/* ===========================
   DARK PREMIUM GLOBAL THEME
   =========================== */

:root {
    --champagne: #d8d5c9;
    --royal-navy: #c9d2cc;
    --emerald: #07140f;
    --charcoal: #0d1411;
    --nav-height: 70px;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; scrollbar-gutter: stable; }
body { height: 100%; overflow-x: hidden; }

/* Base typography */
body {
    font-family: "Arial", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background: var(--emerald);
    color: var(--champagne);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    padding-top: var(--nav-height);
}

/* ===========================
   PREMIUM NAVBAR
   =========================== */
/* ===========================
   NAVBAR
   =========================== */

.navbar {
    min-height: 70px;
    height: auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(10, 18, 15, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(58, 43, 43, 0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 2000;
}



.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
}

.mobile-menu {
  font-family: playfair display, serif;
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 18, 15, 0.95);
    backdrop-filter: blur(14px);
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.3rem;
}

.collaboration-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: -25px;

}

.collaboration-text {
    font-family: "Playfair Display", serif;
    font-size: 0.7rem;
    color: var(--champagne);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.9;
    text-align: center;
}

.collab-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wfuna-img {
    height: 80px;
    width: auto;
}
/* ===========================
   NAV LINKS ROW
   =========================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.9rem; /* reduced from 1.25rem */
}

/* TEXT LINKS */
.nav-links a {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1rem; /* slightly smaller */
    color: var(--champagne);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

/* GOLD UNDERLINE HOVER */
.nav-links a:not(.logo):not(.signup-tab):not(.admin-link)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f7e7b4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f7e7b4;
}

/* ===========================
   LOGOS
   =========================== */

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 65px; /* reduced from 80px */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo1-img {
    height: 170px; /* reduced from 170px */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* Hover glow */
.logo-img:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.45));
}

/* ===========================
   DROPDOWN
   =========================== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: rgba(15, 25, 20, 0.97);
    padding: 0.65rem 0;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    display: none;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 2500;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.1rem;
    font-family: "Playfair Display", serif;
    color: var(--champagne);
    transition: background 0.18s ease, padding-left 0.18s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.12);
    padding-left: 1.25rem;
}

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


/* ===========================
   SIGN UP BUTTON
   =========================== */

.signup-tab {
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    color: var(--champagne);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.25s ease;
}

/* ===========================
   ADMIN ICON
   =========================== */

.admin-link {
    padding: 6px 10px; /* slightly smaller */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.25s ease;
}

.admin-icon {
    width: 26px; /* reduced from 30px */
    height: 26px;
    color: white;
    transform: translateY(1px);
}

.admin-link:hover .admin-icon {
    color: #eadb8c;
}

/* ===========================
   MOBILE
   =========================== */

@media (max-width: 768px) {
    .navbar {
        height: 75px;
        padding: 0 1rem;
        justify-content: space-between;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .collaboration-section {
        display: none;
    }

    .logo-img {
        height: 40px;
    }

    .logo1-img {
        height: 70px;
    }

    .mobile-menu {
        display: block;
    }
}



/* ===========================
   HERO / SLIDESHOW
   =========================== */

.hero {
    position: relative;
    height: calc(100vh - var(--nav-height));
    width: 100%;
    overflow: hidden;
    display: block;
    margin-bottom: 3rem;
}


.slideshow-container {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1000ms ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: rgba(0,0,0,0.35);
}

.slide-fallback { display: none; }

.slide-caption {
    position: absolute;
    right: clamp(0.75rem,3vw,2rem);
    bottom: clamp(1rem,3.5vh,2.5rem);
    z-index: 2;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: var(--champagne);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: right;
    max-width: 420px;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 4rem 1.25rem;
    background: var(--charcoal);
    color: var(--champagne);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 3rem;
    color: var(--champagne);
    margin-bottom: 0.75rem;
}

.about-content {
    max-width: 1100px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
    color: var(--champagne);
    line-height: 1.65;
}

/* PDF Tab */
.pdf-tab {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    background-color: #c9c191;
    color: #fff;
    border: none;
    padding: 1rem 0.75rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: right 0.3s ease, background 0.3s;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.pdf-tab:hover {
    background-color: rgba(46,57,50,0.85);
}

/* ===========================
   OPPORTUNITIES / PACKAGES
   =========================== */

.opportunities {
    padding: 4rem 1.5rem;
    background: var(--charcoal);
    text-align: center;
}

.opportunities .lead-text {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--champagne);
}

.package-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.package-card {
    background: #111a16;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    padding: 2rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--champagne);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--champagne);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.package-list li {
    margin-bottom: 0.5rem;
}

.package-list .note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.package-btn {
    background: var(--emerald);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.package-btn:hover {
    background: #0a3c2b;
}

/* Package color variations */
.package-card.bronze .package-title { color: #958266; }
.package-card.silver .package-title { color: #c0c0c0; }
.package-card.gold .package-title { color: #d8bf6e; }

/* Mobile package layout */
@media (max-width: 600px) {
    .package-card {
        width: 90%;
    }
}

/* also hide any horizontal overflow site-wide just in case */
body {
    overflow-x: hidden;
}
.section-title{
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 3rem;
    color: var(--royal-navy);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}
.about-content{
    max-width: 1100px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
    color: rgba(6,8,12,0.92);
    line-height: 1.65;
}
/* ============================= */
/* PDF Tab - Right Edge of About */
/* ============================= */

.pdf-tab {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #2e3932f5;
  color: #fff;
  border: none;
  padding: 1rem 0.75rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
  z-index: 25;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Vertical arrow text */
  writing-mode: vertical-rl;
  transform: rotate(180deg);

  /* Needed for tooltip positioning */
  position: absolute;
}

/* Hover color */
.pdf-tab:hover {
  background-color: var(--emerald);
}


/* ============================= */
/* Tooltip */
/* ============================= */

.pdf-tab::after {
  content: attr(data-tooltip);
  position: absolute;

  top: 50%;
  right: 110%; /* keeps tooltip attached neatly */

  transform: translateY(-50%);

  background: rgba(7, 24, 15, 0.95);
  color: var(--champagne);
  padding: 0.6rem 1rem;
  border-radius: 8px;

  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);

  z-index: 50;
}

/* Show tooltip on hover */
.pdf-tab:hover::after {
  opacity: 1;
}


/* ============================= */
/* Slide-out Panel */
/* ============================= */

.pdf-panel {
  position: absolute;
  right: -800px;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: min(90vh, 1000px);
  background: #ffffff;
  border: 2px solid #2e3932f5;
  box-shadow: -4px 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 24;
  transition: right 0.3s ease;
}

.pdf-panel.open {
  right: 0;
}


/* ============================= */
/* Header Inside Panel */
/* ============================= */

.pdf-header {
  background: #2e3932f5;
  font-family: "Playfair Display", serif;
  text-align: center;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  flex-shrink: 0;
}


/* Close Button */

.close-pdf {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.close-pdf:hover {
  transform: scale(1.2);
}


/* ============================= */
/* PDF Viewer */
/* ============================= */

.pdf-viewer {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}

/* SIGNUP */
.signup{
    padding: 3.25rem 1.25rem;
    background: var(--champagne);
    color: var(--royal-navy);
    text-align: center;
}
p, ul{
    font-family:'Times New Roman', Times, serif;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: whitesmoke;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* SIGNUP FORM — Modern Alenra Styling */
.application-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, rgba(46,57,50,0.04), transparent);
  display: flex;
  justify-content: center;
}

.signup-form-wrapper {
  background: #ffffff;
  padding: 2.5rem 2rem;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 10px 28px rgba(8,12,20,0.08);
}

.signup-form-wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--emerald);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

#multiStepForm {
  display: grid;
  gap: 1.25rem;
}

/* Labels */
#multiStepForm label {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--emerald);
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 600;
}

/* Inputs + Textareas */
#multiStepForm input,
#multiStepForm select,
#multiStepForm textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(6,8,12,0.15);
  background: rgba(255,255,255,0.95);
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  color: #000000; /* Black text color */
  transition: all 200ms ease;
}

#multiStepForm input:hover,
#multiStepForm select:hover,
#multiStepForm textarea:hover {
  border-color: rgba(7,24,15,0.2);
  box-shadow: 0 2px 8px rgba(7,24,15,0.08);
}

#multiStepForm input:focus,
#multiStepForm select:focus,
#multiStepForm textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(7,24,15,0.15), 0 4px 12px rgba(7,24,15,0.1);
  background: rgba(255,255,255,1);
}

/* Textareas */
#multiStepForm textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
#multiStepForm button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, var(--emerald) 0%, rgba(7,24,15,0.9) 100%);
  color: var(--champagne);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 200ms ease;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(7,24,15,0.2);
}

#multiStepForm button:hover {
  background: linear-gradient(135deg, rgba(7,24,15,0.95) 0%, var(--royal-navy) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7,24,15,0.25);
}

#multiStepForm button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px #07180f26;
}

/* validation error indicator - only after interaction */
input.touched:invalid,
select.touched:invalid,
textarea.touched:invalid {
  border-color: crimson;
}

input.touched:invalid:focus,
select.touched:invalid:focus,
textarea.touched:invalid:focus {
  box-shadow: 0 0 0 4px rgba(220,20,60,0.3);
}


#multiStepForm input:invalid:focus,
#multiStepForm select:invalid:focus,
#multiStepForm textarea:invalid:focus,
#packageForm input:invalid:focus,
#packageForm select:invalid:focus,
#packageForm textarea:invalid:focus {
  box-shadow: 0 0 0 4px rgba(220,20,60,0.3);
}
/* DARK GREEN HIGHLIGHT SECTION */
.highlight-section {
  background: var(--emerald);
  color: var(--champagne);
  padding: 4rem 1.5rem;
  text-align: left;
}

.highlight-section h2,
.highlight-section h3,
.highlight-section h4 {
  color: var(--champagne);
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

.highlight-section p,
.highlight-section li {
  color: #07180f26;
  font-size: 1.05rem;
  line-height: 1.7;
}

.highlight-section a {
  color: var(--champagne);
  text-decoration: underline;
}

.highlight-section .card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgb(255, 255, 255);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* PROGRAM HIGHLIGHT STYLES */
.program-highlight {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(247,231,180,0.05));
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(212,175,55,0.15);
}

.program-highlight h3 {
  color: var(--champagne);
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.program-date {
  color: #b36b00;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.certificate-info {
  background: rgba(7, 24, 15, 0.05);
  border-left: 4px solid var(--emerald);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
 
  font-weight: 600;
}

.certificate-info strong {
  font-weight: 900;
  font-style: normal;
   font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .signup-form-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .signup-form-wrapper h2 {
    font-size: 1.8rem;
  }
}
/* Containers used by new sections */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* TEAM */
.team {
  padding: 3.25rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  color: var(--royal-navy);
}
.team .section-title { text-align: left; margin-bottom: 0.5rem; }
.team .lead-text { margin-bottom: 1.25rem; color: rgba(6,8,12,0.8); }

/* FOUNDER SECTION */
.founder-section {
  background: #2e3932f5;
  color: #ffffff;
  display: flex;
  min-height: 600px;
  align-items: stretch;
  width: 100%;
  margin: 3rem 0;
}

.founder-photo {
  flex: 1;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-bio {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-bio h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--emerald);
  font-family: "Playfair Display", serif;
}

.founder-bio p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.founder-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: var(--emerald);
  transition: color 0.3s, transform 0.3s;
}

.founder-social a:hover {
  color: #ffffff;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .founder-section {
    flex-direction: column;
    min-height: auto;
  }
  
  .founder-photo {
    min-height: 300px;
  }
  
  .founder-bio {
    padding: 2rem 1.5rem;
  }
  
  .founder-bio h3 {
    font-size: 1.5rem;
    color: var(--champagne);
  }
}



.affiliations {
padding: 4rem 0 9rem;  
background: #f7f8f9; /* clean, premium, subtle */
border-top: 1px solid rgba(0,0,0,0.06);
color: var(--royal-navy);
}
.affiliations .section-title {
  text-align: left;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.affiliations .lead-text {
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  color: rgba(6, 8, 12, 0.75);
  max-width: 650px;
  line-height: 1.6;
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
  gap: 1.25rem; 
  align-items: center;
  justify-items: center;
  margin-top: 2rem;
}

/* Clean wrapper */
.affiliate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* Bigger, sharper logos */
.affiliate img {
  max-width: 100%;
  max-height: 110px;   /* increased significantly */
  object-fit: contain;
  filter: grayscale(0);
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Subtle premium hover */
.affiliate img:hover {
  transform: scale(1.06);
  opacity: 0.95;
}

/* Accessibility focus */
a:focus, input:focus, button:focus { outline: 3px solid rgba(18,60,40,0.12); outline-offset: 2px; }

/* Responsive tweaks */
@media (max-width: 720px){
    .nav-links { display: none; }
    .section-title { text-align: center; }
    .about { padding: 2rem 1rem; }
    .signup:not(.container) { padding: 2rem 1rem; }
}
@media (max-width: 900px) {
  .member-photo { height: 140px; }
}
@media (max-width: 600px) {
  .section-title { font-size: 1.6rem; text-align: center; }
  .team .section-title, .affiliations .section-title { text-align: center; }
  .lead-text { text-align: center; }
}



.opportunities {
  padding: 5rem 2rem;
  text-align: center;
  background: rgb(10, 14, 9);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color:rgb(255, 255, 255) ;
}

.lead-text {
  max-width: 650px;
  margin: 0 auto 4rem;
  color: #2e3932f5;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* STACK LAYOUT */
.package-stack {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* FUTURISTIC CARD */
.package.futuristic {
  position: relative;
  display: flex;
  padding-left: 3.5rem;
}

/* Metallic neon tier line */
.package .tier-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  filter: drop-shadow(0 0 12px currentColor);
}

/* Metallic gradients with glow */
.bronze .tier-line {
  color: #d28b47;
  background: linear-gradient(to bottom, #e8a86f, #8a4e1f);
}

.silver .tier-line {
  color: #d0d0d0;
  background: linear-gradient(to bottom, #f0f0f0, #8f8f8f);
}

.gold .tier-line {
  color: #f5d26b;
  background: linear-gradient(to bottom, #ffe08a, #b38a1e);
}

/* GLASS PANEL */
.package .content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 2.4rem 2.2rem;
  width: 100%;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.package:hover .content {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.35);
}

/* TYPOGRAPHY */
.package h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.package .price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.7rem;
  color: #e6e6e6;
}

/* LIST */
.package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
}

.package ul li {
  margin-bottom: 0.75rem;
  color: #dcdcdc;
  font-size: 1.05rem;
  padding-left: 1.3rem;
  position: relative;
}

.package ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #f5d26b;
  border-radius: 50%;
  box-shadow: 0 0 6px #f5d26b;
}

/* CTA BUTTON */
.package .cta {
  display: inline-block;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, #1a1f1d, #2e3932);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.package .cta:hover {
  background: linear-gradient(135deg, #2e3932, #1a1f1d);
  transform: translateY(-3px);
}

/* PACKAGE SIGNUP STYLING */
.signup.container {
  padding: 4rem 1.25rem;
  background: linear-gradient(135deg, rgba(46,57,50,0.04) 0%, rgba(7,24,15,0.02) 100%);
  color: var(--royal-navy);
  min-height: 80vh;
  display: block;
}

.signup.container .section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.signup.container .lead-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(6,8,12,0.8);
}

#packageForm {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.98) 100%);
  padding: 3.5rem 3rem;
  border-radius: 20px;
  max-width: 920px;
  width: 100%;
  margin: 2rem auto 0;
  box-shadow: 0 15px 40px #07180f1f, 0 0 1px rgba(7,24,15,0.1);
  border: 3px solid var(--emerald);
  position: relative;
}

#packageForm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(7,24,15,0.03) 0%, transparent 100%);
  border-radius: 20px;
  pointer-events: none;
}

.form-step {
  display: none;
  text-align: left;
  margin-top: 2rem;
}

.form-step.active {
  display: block;
}

.form-step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--emerald);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--emerald);
  letter-spacing: 0.01em;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--royal-navy);
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
/* Contact Form Labels Only */
.contact-section .contact-form .form-group label {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--champagne);   /* Champagne colour */
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 2px solid rgba(6,8,12,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  color: #000000; /* Black text color */
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(6,8,12,0.4);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(7,24,15,0.25);
  box-shadow: 0 4px 12px rgba(7,24,15,0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(7,24,15,0.15), 0 6px 16px rgba(7,24,15,0.1);
  background: rgba(255,255,255,1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: "Arial", sans-serif;
  line-height: 1.5;
}

/* Form Navigation Buttons */
.prev-btn,
.next-btn,
.submit-btn {
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Playfair Display", serif;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.prev-btn::before,
.next-btn::before,
.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 200ms ease;
  z-index: -1;
}

.prev-btn:hover::before,
.next-btn:hover::before,
.submit-btn:hover::before {
  left: 100%;
}

.prev-btn,
.next-btn {
  background: linear-gradient(135deg, var(--royal-navy) 0%, rgba(46,57,50,0.9) 100%);
  color: var(--champagne);
  margin-right: 0.75rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(46,57,50,0.2);
}

.prev-btn:hover,
.next-btn:hover {
  background: linear-gradient(135deg, var(--emerald) 0%, rgba(7,24,15,0.9) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(7,24,15,0.25);
}

.prev-btn:active,
.next-btn:active {
  transform: translateY(-1px);
}

.submit-btn {
  background: linear-gradient(135deg, var(--emerald) 0%, rgba(7,24,15,0.9) 100%);
  color: var(--champagne);
  margin-top: 2rem;
  width: 100%;
  box-shadow: 0 6px 16px rgba(7,24,15,0.25);
}

.submit-btn:hover {
  background: linear-gradient(135deg, rgba(7,24,15,0.95) 0%, var(--royal-navy) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(7,24,15,0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7,24,15,0.2);
}

.back-btn {
  display: inline-block;
  color: var(--royal-navy);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 700;
  transition: all 200ms ease;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.005em;
}

.back-btn:hover {
  color: var(--emerald);
  transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  #packageForm {
    padding: 2.5rem 1.75rem;
    border-radius: 16px;
  }

  .signup.container .section-title {
    font-size: 2.2rem;
  }

  .form-step-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .prev-btn,
  .next-btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .submit-btn {
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .signup.container {
    padding: 2.5rem 1rem;
  }

  #packageForm {
    padding: 2rem 1.25rem;
    border-radius: 14px;
  }

  .signup.container .section-title {
    font-size: 1.8rem;
  }

  .form-step-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .prev-btn,
  .next-btn,
  .submit-btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0 5rem;
  background: #07180f; /* same as homepage */
  color: #bfbfbd;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  color: var(--champagne);
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--emerald);
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  font-size: 1rem;
  background: #ffffff;
  outline: none;
  transition: border 0.2s ease;
  color: #000000; /* Black text color */
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0b3d2e; /* dark green */
}

.contact-btn {
  background: #0b3d2e;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #0d4a38;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

.footer {
  background-color: #2e3932f5; 
  color: #ffffff;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.4rem; /* tighter spacing */
  font-size: 0.95rem;
  opacity: 0.9;
  cursor: pointer;
}

.footer-menu li:hover {
  opacity: 1;
}

/* ensure anchor tags in footer are white */
.footer-menu li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-menu li a:hover {
  text-decoration: underline;
}

.footer-main {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  opacity: 1;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-right .footer-logo {
  width: 240px; /* increased size */
  height: auto;
  object-fit: contain;
  /* remove color filter so original image is shown */
  filter: none;
}

.footer-right {
  display: flex;
  flex-direction: row; /* switch to row layout */
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: flex-start; /* items start from left */
  /* use relative positioning to shift entire block upward */
  position: relative;
  top: -3.5rem; /* moved further up */
}

.footer-right .footer-logo {
  width: 180px; /* slightly smaller to balance */
}

.footer-right .footer-logo {
  /* reset earlier margin adjustment */
  margin-top: 0;
}

/* Legal Page Layout */
.legal-container {
  max-width: 900px;
  margin: 8rem auto 2rem;
  padding: 0 1.5rem;
}

.legal-title {
  font-size: 2.4rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--royal-navy);
}

.legal-content h2 {
  margin-top: 2rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--royal-navy);
}

.legal-content p {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: white;
}