/* sobre.css */
:root {
   --primary-color: #0066cc;
   --secondary-color: #ff6600;
   --text-color: #333333;
   --background-color: #ffffff;
   --accent-color: #f5f5f5;
   --hover-color: #004499;
   --border-color: #e0e0e0;
}

.dark {
   --primary-color: #4d94ff;
   --secondary-color: #ff944d;
   --text-color: #f5f5f5;
   --background-color: #1a1a1a;
   --accent-color: #2a2a2a;
   --hover-color: #1265ca;
   --border-color: #444444;
}

body {
   font-family: 'Inter', sans-serif;
   line-height: 1.6;
   color: var(--text-color);
   background-color: var(--background-color);
   transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 20px 0;
}

/* Header styles (assuming they're shared across pages) */
header {
   background-color: var(--background-color);
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   position: fixed;
   width: 100%;
   z-index: 1000;
   transition: background-color 0.3s ease;
}

header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
}

.logo img {
   height: 40px;
}

nav ul {
   display: flex;
   list-style: none;
}

nav ul li {
   margin-left: 30px;
}

nav ul li a {
   text-decoration: none;
   color: var(--text-color);
   font-weight: 500;
   transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
   color: var(--primary-color);
}

nav ul li a.active {
   font-weight: bold;
}

.dark-mode-toggle {
   background: none;
   border: none;
   color: var(--text-color);
   font-size: 1.2rem;
   cursor: pointer;
   transition: color 0.3s ease;
}

.dark-mode-toggle:hover {
   color: var(--primary-color);
}

.dark-mode-toggle .fa-sun {
   display: none;
}

.dark .dark-mode-toggle .fa-moon {
   display: none;
}

.dark .dark-mode-toggle .fa-sun {
   display: inline-block;
}

/* About Hero Section */
.about-hero {
   background-color: var(--primary-color);
   color: #ffffff;
   text-align: center;
   padding: 100px 0 50px;
}

.about-hero h1 {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.about-hero p {
   font-size: 1.2rem;
   max-width: 600px;
   margin: 0 auto;
}

/* Main Content */
main {
   padding-top: 50px;
}

.about-content {
   max-width: 800px;
   margin: 0 auto;
}

.our-story,
.our-mission,
.our-team {
   margin-bottom: 50px;
}

.our-story h2,
.our-mission h2,
.our-team h2 {
   color: var(--primary-color);
   margin-bottom: 20px;
}

.team-members {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 30px;
}

.team-member {
   flex: 1;
   min-width: 200px;
   text-align: center;
}

.team-member img {
   width: 150px;
   height: 150px;
   border-radius: 50%;
   object-fit: cover;
   margin-bottom: 15px;
}

.team-member h3 {
   color: var(--primary-color);
   margin-bottom: 5px;
}

.team-member p {
   color: var(--secondary-color);
}

@media (max-width: 768px) {
   .logo img {
      margin-left: 10px;
      height: 30px;
      position: absolute;
      top: 32px;
  }

  .menu-toggle {
      display: block;
      position: relative;
  }

  .menu-toggle img {
      height: 50px;
      display: block;
  }

  nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: var(--background-color);
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
      transition: left 0.3s ease;
      z-index: 1000;
  }

  nav.active {
      left: 0;
  }

  nav ul {
      flex-direction: column;
      padding-top: 80px;
  }

  nav ul li {
      margin: 0;
  }

  nav ul li a {
      display: block;
      padding: 15px 20px;
      font-size: 1.1rem;
  }

  .line-toggle-menu {
      display: inline-block;
      height: 4px;
      background-color: var(--border-color);
  }
  .line-01 {
      width: 30%;
  }
  .line-02 {
      width: 40%;
  }
  .line-03 {
      width: 50%;
  }
  #logoToggle {
      display: block;
  }

  .social-icons-menu-mobile {
      display: inline-block;
      position: absolute;
      bottom: 69px;
      left: 72px;
  }
  .link-facebook-menu,
  .link-instagram-menu,
  .link-linkedin-menu {
      color: var(--primary-color);
      height: 40px;
      margin: 0 10px;
  }
  .social-icons-menu-mobile .fa-facebook,
  .social-icons-menu-mobile .fa-instagram,
  .social-icons-menu-mobile .fa-linkedin {
      font-size: 30px;
  }

  #logoToggle img {
      position: absolute;
      top: 343px;
      left: 87px;
      height: 150px;
  }
  
   .about-hero {
      padding: 100px 0 20px;
   }

   .team-members {
       flex-direction: column;
       align-items: center;
   }

   .team-member {
       width: 100%;
       max-width: 250px;
   }
}

/* Footer */
footer {
   background-color: var(--accent-color);
   color: var(--text-color);
   text-align: center;
   padding: 20px 0;
   margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
   .about-content {
      padding: 0 10px;
   }

   .about-hero h1 {
       font-size: 2rem;
   }

   .about-hero p {
       font-size: 1rem;
   }

   .our-story h2,
   .our-mission h2,
   .our-team h2 {
       font-size: 1.5rem;
   }

   .team-members {
       flex-direction: column;
       align-items: center;
   }

   .team-member {
       width: 100%;
       max-width: 250px;
   }
}