
:root {
  --blue: #0c1c46;
  --gold: #f9c938;
  --light-bg: #f7f4ef;
  --white: #ffffff;
  --gray: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: var(--white);
  line-height: 1.6;
}

header {
  background: var(--blue);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1003;
}

/* Section titles spacing */
h2, h3 {
    margin-bottom: 1.5rem;
  }
  
  /* Paragraphs below headings */
  .section p,
  .story-text p,
  .features p,
  .testimonial p,
  .skills p {
    margin-bottom: 1.5rem;
  }
  
  /* Buttons inside sections */
  .section .btn,
  .story .btn,
  .cta .btn {
    margin-top: 1.5rem;
  }
  

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  z-index: 1002;
  padding: 0;
  margin: 0;
  line-height: 1;
  position: relative;
  top: 2px; /* fine-tune vertical alignment */
}

  
  
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#main-nav {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
}

@media (max-width: 768px) {
  #main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 270px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--blue);
    transform: translateX(100%);
    padding: 4rem 2rem 2rem;
    z-index: 1001;
    overflow-y: auto;
  }

  #main-nav.open {
    transform: translateX(0);
  }

  #nav-overlay.active {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  #main-nav a {
    width: 100%;
    margin: 1rem 0;
  }
}

nav a {
  color: white;
  margin: 0 1rem;
  font-weight: 500;
  text-decoration: none;
}


/* Ensure nav links and button are aligned properly */
#main-nav a {
  display: flex;
  align-items: center;
  height: 40px; /* Match the visual height of the button */
  line-height: 1;
  padding-top: 2px; /* Fine-tune alignment if needed */
}

#main-nav .btn {
  padding: 8px 16px;
  background: var(--gold);
  color: black;
  border-radius: 4px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px; /* Match height of nav links */
  margin-left: 1rem;
  margin-top: 0; /* Reset any vertical misalignment */
}


section {
  padding: 3rem 1.5rem;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('images/BG.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero > div {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: var(--gold);
  color: #000;
  padding: 12px 32px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.partners, .story, .features, .cta, .testimonials, .skills {
  max-width: 1200px;
  margin: 0 auto;
}

.story {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
}

.story img {
  width: 250px;
}

.story-text {
  max-width: 600px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature i {
  font-size: 3.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.cta {
  background: url('images/cta-mock.png') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: left;
  padding: 5rem 2rem;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 70, 0.074);
  z-index: 0;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.testimonial-grid, .skills-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

.testimonial, .skill {
  padding: 2rem;
  border-radius: 8px;
  background: var(--light-bg);
  text-align: center;
}

.stars {
  color: #ffb400;
  margin-bottom: 0.5rem;
}

.skill {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  text-align: left;
}

.skill.yellow {
  background: var(--gold);
  color: black;
}

.skill i {
  font-size: 2rem;
  color: var(--blue);
}

footer {
  background: var(--blue);
  color: white;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  border-top: 6px solid var(--gold);
}

footer h4 {
  margin-bottom: 1rem;
}

footer input {
  padding: 10px;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: none;
}

footer button {
  padding: 10px 20px;
  background: var(--gold);
  border: none;
  font-weight: bold;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

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






.contact-section {
    background: url('images/bg-artdeco.png') center/cover no-repeat;
    padding: 5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    text-align: left;
  }
  
  .contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
    gap: 4rem;
    position: relative;
  }
  
  /* Vertical line between form and info */
  .contact-container::before {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    width: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    opacity: 0.5;
    z-index: 0;
  }
  
  /* Contact Form */
  .contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 1rem;
    background: transparent;
    color: var(--blue);
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .contact-form button {
    background: var(--gold);
    color: white;
    font-weight: bold;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #d9b021;
  }
  
  /* Contact Info */
  .contact-info {
    flex: 1;
    min-width: 300px;
    font-size: 1rem;
    color: var(--blue);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
  }
  
  .contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-info p {
    display: flex;
    align-items: center;
    line-height: 1.6;
  }
  
  .contact-info i {
    color: var(--gold);
    margin-right: 0.7rem;
    font-size: 1.2rem;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  /* Art Deco overlay section (optional) */
  .artdeco-section {
    position: relative;
    background: url('images/ardecobg.png') center center / cover no-repeat;
    padding: 4rem 2rem;
    z-index: 1;
  }
  
  .artdeco-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
  }
  
  /* Responsive Fixes */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
      gap: 3rem;
      text-align: center;
    }
  
    .contact-form,
    .contact-info {
      width: 100%;
      max-width: 500px;
    }
  
    .contact-container::before {
      display: none;
    }
  
    .contact-info p {
      justify-content: center;
    }
  
    .contact-info h3 {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 768px) {
    .social-icons {
        display: flex;
        gap: 1.5rem;
        font-size: 1.5rem;
        margin-top: 1rem;
        justify-content: center; /* <-- this centers horizontally */
      }
    }

  
  




    .info-section {
      background: url('images/ardecobg.png') center/cover no-repeat;
      padding: 4rem 2rem;
      position: relative;
    }
    
    .info-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(255, 255, 255, 0.487);
      z-index: 0;
    }
    
    .info-section > * {
      position: relative;
      z-index: 1;
    }
    
    .info-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    
    .info-block {
      flex: 1;
      min-width: 280px;
    }
    
    .info-block h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      color: var(--blue);
    }
    
    .subtitle {
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: var(--blue);
    }
    
    .info-block p {
      margin-bottom: 1.25rem;
      line-height: 1.7;
    }
    
    .info-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }
    
    .info-image img {
      max-width: 300px;
      border-radius: 8px;
    }
    
    .info-divider {
      text-align: center;
      margin: 3rem 0;
    }
    
    .info-divider::before {
      content: url('images/separator-deco.svg');
      display: inline-block;
    }
    
    .info-text-section {
      max-width: 800px;
      margin: 0 auto 4rem auto;
      text-align: center;
    }
    
    .info-text-section h2 {
      font-size: 2rem;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    
    .info-text-section p {
      margin-bottom: 1.25rem;
      line-height: 1.7;
    }
    
    .quote-block {
      text-align: center;
      padding: 3rem 1rem;
      max-width: 800px;
      margin: auto;
      font-style: italic;
      color: var(--blue);
    }
    
    .quote-block blockquote {
      font-size: 1.3rem;
    }
    
    .quote-block span {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
      font-size: 1.1rem;
    }
    
    @media (max-width: 768px) {
      .info-container {
        flex-direction: column;
        text-align: center;
      }
    
      .info-image {
        margin-top: 1.5rem;
      }
    
      .info-block h2,
      .info-text-section h2 {
        font-size: 1.6rem;
      }
    }
    

    .info-divider {
      text-align: center;
      margin: 3rem 0;
    }
    
    .info-divider img {
      max-width: 320px;
      height: auto;
    }
    
    @media (max-width: 768px) {
      .info-divider img {
        max-width: 250px;
      }
    }




    .rates-section {
      padding: 4rem 2rem;
      background: url('images/bg-artdeco.png') center/cover no-repeat;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .section-subtitle {
      text-align: center;
      margin-bottom: 3rem;
      color: #555;
    }
    .info-divider img {
      max-width: 320px;
      margin: 0 auto 2rem;
      display: block;
    } 
    
    .course-group h3 {
      margin: 2.5rem 0 1.5rem;
      color: var(--blue);
      font-size: 1.5rem;
    }
    .course-grid {
      display: grid;
      gap: 1.5rem;
    }
    .four-boxes {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .three-boxes {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .course-box {
      background: white;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: left;
    }
    .course-box .price {
      color: var(--gold);
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .four-boxes,
      .three-boxes {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 1.75rem;
      }
      .info-divider img {
        max-width: 200px;
      }
    }



    .orientation-section {
      background: url('images/ardecobg.png') center/cover no-repeat;
      position: relative;
      padding: 4rem 2rem;
      z-index: 1;
    }
    .orientation-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(255, 255, 255, 0.333);
      z-index: -1;
    }
    
    .orientation-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .orientation-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .orientation-header h2 {
      font-size: 2rem;
      color: var(--blue);
    }
    .orientation-header p {
      color: #555;
    }
    
    .orientation-content {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
      justify-content: center;
      margin-top: 2rem;
    }
    .orientation-text {
      flex: 1;
      min-width: 280px;
      color: #333;
    }
    .orientation-image img {
      max-width: 280px;
      border-radius: 8px;
    }
    
    .separator {
      display: flex;
      justify-content: center;
      margin: 3rem 0;
    }
    .separator img {
      max-width: 320px;
    }
    
    .steps {
      text-align: center;
    }
    .steps h3 {
      color: var(--blue);
      margin-bottom: 2rem;
    }
    .step-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .step-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      text-align: left;
    }
    .step-card strong {
      display: block;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .step-card p {
      color: #444;
    }
    
    .pricing {
      text-align: center;
      margin-top: 3rem;
    }
    .pricing h3 {
      font-size: 1.5rem;
      color: var(--blue);
    }
    .price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .price-card {
      background: white;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }
    .price-card h4 {
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .price-card .price {
      font-size: 1.4rem;
      color: var(--gold);
      font-weight: bold;
      margin-bottom: 0.5rem;
    }
    .price-card p {
      font-size: 0.9rem;
      color: #333;
    }
    
    .btn {
      background: var(--gold);
      color: #000;
      padding: 12px 28px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      margin-top: 2rem;
      cursor: pointer;
    }
    
    @media (max-width: 768px) {
      .orientation-header h2 {
        font-size: 1.5rem;
      }
      .orientation-content {
        flex-direction: column;
        text-align: center;
      }
      .orientation-image img {
        margin: 0 auto;
      }
      .price-grid {
        grid-template-columns: 1fr;
      }
    }
  




    .ai-section {
      padding: 4rem 1.5rem;
      background: url('images/ardecobg.png') center center / cover no-repeat;
      position: relative;
      z-index: 1;
      color: var(--blue);
    }
    
    .ai-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(255, 255, 255, 0.6);
      z-index: -1;
    }
    
    .ai-section h2,
    .ai-section h3 {
      text-align: center;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    
    .ai-section p {
      max-width: 800px;
      margin: 0 auto 2rem;
      line-height: 1.6;
      text-align: center;
    }
    
    .separator {
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 2.5rem 0;
    }
    
    .separator img {
      width: 300px;
      height: auto;
    }
    
    .ai-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .ai-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      padding: 2rem;
      text-align: left;
    }
    
    .ai-card h4 {
      margin-bottom: 0.8rem;
      font-size: 1.2rem;
      color: var(--blue);
    }
    
    .ai-card ul {
      padding-left: 1.2rem;
      margin: 0;
    }
    
    .ai-card ul li {
      margin-bottom: 0.5rem;
    }
    
    .ai-card .price {
      color: var(--gold);
      font-weight: 600;
      margin-top: 0.5rem;
    }
    
    .ai-benefits {
      margin-top: 3rem;
      padding: 2rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .ai-benefits ul {
      list-style: none;
      padding: 0;
    }
    
    .ai-benefits ul li {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
    }
    
    .ai-benefits ul li::before {
      content: '✔';
      color: var(--gold);
      margin-right: 0.7rem;
      font-weight: bold;
    }
    
    @media (max-width: 768px) {
      .ai-section p {
        padding: 0 1rem;
      }
    
      .ai-card,
      .ai-benefits {
        padding: 1.5rem;
      }
    

      .separator {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 2.5rem 0;
      }
      
      .separator img {
        width: 300px;
        height: auto;
      }
      

    }

    .ai-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    
    .ai-card {
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      font-size: 1rem;
      color: var(--blue);
      line-height: 1.5;
      text-align: left;
    }
    

    .course-structure {
      max-width: 800px;
      margin: 3rem auto;
      text-align: center;
    }
  
    .course-structure h4 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }
  
    .course-structure h5 {
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }
  
    .course-structure p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    


    .course-structure h4 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    
    .course2-box {
      background: #f7f4ef;
      border: 2px solid var(--gold);
      border-radius: 10px;
      padding: 2rem;
      margin-bottom: 2rem;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .course2-box h5 {
      font-size: 1.25rem;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    /* === BASE NAV === */
#main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

#main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--blue);
  border: 1px solid var(--gold);
  min-width: 200px;
  z-index: 1004;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: white;
  font-weight: 400;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--gold);
  color: black;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* === MOBILE NAV === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  z-index: 2002;
  position: fixed;
  top: 1rem;
  right: 1.5rem;
}

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
}

#main-nav.mobile-open {
  transform: translateX(0);
}

@media (max-width: 768px) {
  #main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 270px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--blue);
    transform: translateX(100%);
    padding: 5rem 2rem 2rem;
    z-index: 2001;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
  }

  .menu-toggle {
    display: block;
  }

  #nav-overlay.active {
    display: block;
  }

  #main-nav a,
  .dropdown-menu a {
    width: 100%;
    margin: 1rem 0;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .nav-dropdown > a::after {
    display: none;
  }
}

    