 * {
	 box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Fredoka', sans-serif;
      overflow-x:hidden;
    }

  .oc_page {
      margin: 0;
      padding: 0;
      
      width: 100%;
      height: 100vh;
    
      background: #f5f5f5;
      background-image: linear-gradient(rgba(202, 202, 202, 0.2) .1em, transparent .1em), linear-gradient(90deg, rgba(158, 158, 158, 0.2) .1em, transparent .1em);
      background-size: 2em 2em;

      
    }

    p{
      font-weight: 400;

    }

li{

  font-weight: 300;
  line-height: 1.5em;

}


  header {
      position: sticky;
      top: 0;
      background:#ffce1b  ;
      color: black;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
 }

.oc-header header {
  background-color: #fddde6;
  color: #333; /* optional base text color */
}

/* Make navigation links white or dark depending on your taste */
.oc-header header a {
  color: #aa0055;
}

/* Optional: change logo color, social icons, etc. */
.oc-header header .logo {
  color: #aa0055;
}

.oc-header header a:hover {
  color: #ff5599;
}
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}

   nav a {
      color: Black;
      text-decoration: none;
      height: 100%;
      display: flex;
      align-items: right;
      padding: 1.7em 1.1em;
      transition: background-color 0.2s ease;
    }

    nav a:hover {
      background-color: #005c92;
    }

/* --- Dropdown Styles --- */
nav ul {
  display: flex;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  padding: 1em;
  display: block;
  transition: background-color 0.2s ease;
}

nav ul li:hover > a {
  background-color: #005c92;
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0081C9;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  z-index: 999;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 0.75em 1em;
  color: rgb(0, 0, 0);
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: #005c92;
}



.content {
	
	padding: 1em;
	
}


 footer {
      text-align: center;
      padding: 2em;
      background: #f0f0f0;
    }



.image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Black overlay */
.banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 50% opacity black */
  z-index: 1;
}

/* Centered text on top */
.banner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
}


.card-overlay {
  position: absolute;
  top: 70px;     
  left: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1em 1.5em;
  max-width: 500px;
  z-index: 1;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5em;
  border: 2px solid white;
  border-radius: 2em;
  padding: 0.3em 0.8em;
  background-color: transparent;
  color: rgb(0, 0, 0);
  margin-left: auto;
  margin-right: 1em;
}

.lang-label {
  font-weight: bold;
  color: rgb(0, 0, 0);
  font-size: 0.7em;
}


.card{
background-color: white;
border:none;
border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 1em 1.5em;
   transition: box-shadow 0.3s;

}

.card:hover{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.social-icons {
  display: flex;
  gap: 12px;
}

.icon-circle {
  background: #333;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}

.icon-circle:hover {
  background: #555;
}

.stickyMenu{
  position:sticky;
  background-color: white;
  border:1px;
  margin:0px;
  padding: 0px;
  top: 1em; /* distance from the top */
  align-self: flex-start; /* prevents stretch */
  max-height: 90vh;
  overflow-y: auto;
  width:10em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 15px;

}



.menu-buttons button {
  display: block;
  width: 100%;
  background-color: white;
  border: none;
  padding: 1em;
  margin-bottom: 0.5em;
  text-align: left;
  font-family: inherit;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.menu-buttons button:hover {
  background-color: #ccc;
  color: #000;
}

.char-card{
background-color: rgb(240, 240, 240);
padding: 2em;
border-radius:15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.char-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 2em;

}

.char-section ul{
  margin:0px;
  padding:0px;
}

.char-section li{
  list-style: none;

}

.char-section img {
  width:400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.char-section .icon{
width:150px

}

.char-section button{
  background-color: #ff5599;
  border:none;
  border-radius: 40px;
  padding:1.5em;
  color:rgb(255, 255, 255);
  font-size: 15px;
  transition: background-color 0.2s ease;
}


.char-section button:hover{
  background-color: #b82e65;
  border:none;
  border-radius: 40px;
  padding:1.5em;
  color:rgb(255, 255, 255);
  font-size: 15px;

}

.char-section p{
font-weight: 300;

}