*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --crimson: #7c1733;
  --crimson-dark: #5a0e24;
  --orange: #ff8f1c;
  --orange-light: #f59e3b;
  --white: #ffffff;
  --dark: #1a0a14;
  --card-dark: #1e0d2a;
}
body {
  font-family: "Rethink Sans";
}
p {
  font-family: "Inter", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
button,
a,
input,
textarea {
  transition: all ease 0.3s !important;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centers whole layout */
}

.section1 {
  background: url("../section1bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Mobile skyline image – hidden on desktop */
.hero-skyline-mobile {
  display: none;
}

/* ─── HERO ─── */
.hero {
  width: 100%;
  max-width: 1440px;
  height: 900px;
  position: relative;
  min-height: 520px;
}

/* subtle noise texture overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
}

/* city skyline image – positioned bottom-right */
.hero-city {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  max-width: 780px;
  object-fit: cover;
  object-position: bottom center;
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.9) 40%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.9) 40%,
    transparent 100%
  );
}

.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  /* background: linear-gradient(90deg, #D4451A 0%, #8B1A35 40%, #3D1A4A 100%); */
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: "Rethink Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff8f1c;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #ff8f1c;
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

/* ─── NAV LOGO (text + icon mark) ─── */
.hero-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-logo-text {
  color: #ffffff;
  font-family: "Rethink Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 100px 56px 80px;
  max-width: 720px;
}

.hero-content > svg {
  max-width: 100%;
  height: auto;
}

.hero-title {
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.5px;
  margin-top: 40px;
  width: 694px;
  max-width: 100%;
  margin-bottom: 25px;
}

.hero-tagline {
  width: 607px;
  max-width: 100%;
  height: 59px;
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 32px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 59px;
  text-transform: uppercase;
  padding: 0px 18px;
  border-radius: 16px;
  margin-bottom: 28px;
}

.hero-date {
  width: 636px;
  max-width: 100%;
  height: 46px;
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.264px;
  margin-top: 38px;
}

.hero-date span {
  opacity: 0.7;
  margin: 0 10px;
}

.hero-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.btn-register-dark {
  display: inline-block;
  background: #1a0a14;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
  margin-top: 25px;
}

.btn-register-dark:hover {
  background: #482b42;
}

/* ─── ABOUT ─── */
.about-section {
  max-width: 1440px;
  width: 100%;
  position: relative;
  padding: 90px 56px;
  background: #fff;
}

.about-eyebrow {
  margin-bottom: 16px;
  color: #292322;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.264px;
  font-family: "Rethink Sans";
}

.about-big-title {
  font-size: 72px;
  font-weight: 700;
  color: #292322;
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
}

.about-text-col p {
  color: #504b4b;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  padding-bottom: 32px;
}

.about-text-col h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a0a14;
  margin-bottom: 12px;
}

.btn-orange {
  background: var(--orange);
  color: #231b1b;
  margin-top: 8px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
}

.btn-orange:hover {
  background: #c95f00;
}

.about-bg-image-a {
  position: absolute;
  right: 0;
  top: 50%;
}

.about-bg-image-b {
  bottom: 0%;
  position: absolute;
  right: 0;
  width: 80%;
  height: 80%;
}

/* Simulated booth photo using CSS art */
.booth-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f5a23a 0%, #c84b1a 35%, #1a0820 70%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.booth-art::before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 140px;
  height: 180px;
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.booth-art::after {
  content: "Transit Technologies";
  position: absolute;
  top: 20px;
  right: 10px;
  background: #fff;
  color: #1a0a14;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

/* ─── SCHEDULE SECTION ─── */
.section3 {
  background: url("../image\ 212.png") center/cover no-repeat;
  position: relative;
}

.schedule-section {
  padding: 90px 56px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
}

.schedule-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1280px;
}

.schedule-eyebrow {
  color: #ffffff;
  font-family: "Rethink Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.264px;
  padding-bottom: 16px;
}

.schedule-title {
  color: #fff;
  font-size: 74px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.264px;
  padding-bottom: 24px;
}

.schedule-text {
  width: 530px;
  max-width: 100%;
  color: #fef9f9;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 30px;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 30px;
}

.tag {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  /* 29px */
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 14px;
  border-radius: 6px;
}

.btn-schedule {
  background: var(--orange);
  color: #231b1b;
  margin-top: 8px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
}

.btn-schedule:hover {
  background: #c95f00;
}

/* Tab buttons */
/* --- Master Dark Background Canvas context --- */
.ag-tabs-wrapper {
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.ag-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 540px; /* Perfect desktop width match */
  box-sizing: border-box;
}

/* --- Base Button States --- */
.ag-tab-button {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  height: 100px;
  padding: 0 32px;
  text-decoration: none;
  border-radius: 16px;
  
  /* STEP 1: Set a standard solid transparent border width */
  border: 1px solid transparent;
  
  /* STEP 2: Layer your inner background image directly over your gradient border track */
  background-image: 
    url("../image 206.png"), 
    linear-gradient(65.84deg, #F57E1E 8.12%, #A81428 52.68%, #9B2D6B 93.15%);
  
  /* STEP 3: Clip layers so the image stays inside, letting the gradient show on all 4 edges */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* --- Base Visibility Mappings --- */
.ag-tab-icon .ag-svg-default {
  display: block; /* Shown by default layout parameters */
}

.ag-tab-icon .ag-svg-hover {
  display: none;  /* Hidden from initial view tracks */
}

/* ══════════════════════════════════════════════════════
   HOVER STATE HOOKS - SWAPS ELEMENT RENDER LAYERS
   ══════════════════════════════════════════════════════ */

/* When the parent button is hovered, hide the default icon */
.ag-tab-button:hover .ag-svg-default {
  display: none !important;
}

/* When the parent button is hovered, display the active icon */
.ag-tab-button:hover .ag-svg-hover {
  display: block !important;
}

/* --- Translucent Hover Background Color Shift --- */
.ag-tab-button:hover {
  /* Adds a subtle luminous light overlay tint on top of your background graphics */
 background: linear-gradient(145deg, #f59e3b, #b80c22);
  transform: translateY(-2px);
}


/* --- Typography Options --- */
.ag-tab-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.2px;
}

/* --- Accent UI Icons --- */
.ag-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8f1c; /* Sharp orange tint profile match */
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.ag-tab-icon svg {
  width: 100%;
  height: 100%;
}
/* Section Container */
    .conference-section {
      width: 100%;
      max-width: 1440px;
      padding: 90px 56px 0px 56px;
    }

    /* Heading Style */
    .conference-title {
      font-size: 72px;
      font-weight: 700;
      color: #292322;
      line-height: 1.05;
      margin-bottom: 45px;

    }

 /* Logo Grid Layout forced to 4 columns */
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 columns */
      gap: 20px; /* Spacing between columns and rows */
      justify-items: center;
    }

    /* Individual Logo Item Card */
    .logo-item {
      width: 302px;
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
    }




/* ══════════════════════════════════════════════════════
   INTERACTIVE HOVER STATE OVERRIDES
   ══════════════════════════════════════════════════════ */

.ag-tab-button:hover {
  /* Shifts container layout slightly to an enhanced white overlay glow backdrop */
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* --- Responsive Media Scale Rules --- */
@media (max-width: 600px) {
  .ag-tabs-wrapper {
    padding: 30px 16px;
  }
  .ag-tab-button {
    height: 72px;
    padding: 0 20px;
    gap: 14px;
    border-radius: 14px;
  }
  .ag-tab-text {
    font-size: 18px;
  }
}


/* ─── HOTEL / VENUE ─── */
.venue-section {
  background: #fff;
  padding: 90px 56px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
}

.venue-card {
  background: url("../footerbg.png") right/cover no-repeat;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 306px;
  margin: 0 auto;
}

.venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.venue-text {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  width: 699px;
  max-width: 100%;
}

.venue-title {
  color: #fff;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.264px;
  font-family: "Rethink Sans";
}

@media (max-width: 1440px) {
  .venue-title {
    font-size: 60px;
  }
}

@media (max-width: 1280px) {
  .venue-title {
    font-size: 52px;
  }
}

@media (max-width: 1024px) {
  .venue-title {
    font-size: 44px;
  }
}

.venue-desc {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
  font-family: "Rethink Sans";
}

.btn-book {
  display: inline-block;
  width: 127px;
  height: 40px;
  border-radius: 90px;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 25.2px */
  text-decoration: none;
  text-align: center;
  margin-top: 15px;
}

.btn-book:hover {
  background: #291c26;
}

.venue-image {
  z-index: 1;
  text-align: right;
  position: relative;
}

.venue-image > img {
  width: 329px;
  height: 283px;
  aspect-ratio: 93 / 80;
  position: absolute;
  right: 60px;
  top: -90px;
}

/* Simulated hotel building illustration */
.hotel-art {
  width: 260px;
  height: 200px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* ─── FOOTER ─── */
.sectionLast {
  background: #111;
}

.footer {
  width: 100%;
  max-width: 1440px;
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-right: 100px;
}

.footer-copy {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.264px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-family: "Inter";
}

.footer-links a {
  color: #fff;
  font-family: "Rethink Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.264px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.py-5 {
  padding-bottom: 5px;
  padding-top: 5px;
}
.about-section-note > span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #504b4b;
}

/* ============================= */
/* 📱 MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 768px) {
  /* GLOBAL */
  .about-section,
  .schedule-section,
  .venue-section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-section,
  .schedule-section,
  .venue-section {
    padding: 55px 20px;
  }
  .about-section-note > span {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    color: #504b4b;
  }
  .about-bg-image-b {
    right: 5px;
  }
  section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* HERO */
  .section1 {
    background: url("../home-hero-bg.png") center/cover no-repeat;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-skyline-mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
    vertical-align: bottom;
    margin-bottom: 0;
  }
  .hero-nav {
    padding: 14px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .schedule-inner {
    gap: 42px;
  }

  .hero-content {
    padding: 56px 20px 32px 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content > svg {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
    width: 100%;
    max-width: 100%;
  }

  .hero-tagline {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    height: auto;
    line-height: normal;
    padding: 10px;
  }

  .hero-date {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    margin-top: 8px;
    height: auto;
  }

  .hero > img {
    right: 0px;
    width: 100%;
    height: auto;
  }

  /* About section — override inline width styles */
  .about-text-col p[style],
  .about-section-note .new-row {
    width: 100% !important;
    max-width: 100%;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-big-title {
    font-size: 36px;
  }

  .about-text-col p,
  .about-text-col h3 {
    width: 100% !important;
  }

  .about-bg-image-a,
  .about-bg-image-b {
    display: inline-block;
    position: relative;
    width: 100%;
  }
  .about-section {
    padding-bottom: 0px;
  }
 

  /* SCHEDULE */
  .schedule-inner {
    grid-template-columns: 1fr;
  }

  .schedule-title {
    font-size: 36px;
  }

  .schedule-text,
  .tags-wrap {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0px;
  }

  .flip-card {
    width: 100%;
  }

  .flip-front,
  .flip-back {
    padding: 20px;
  }

  /* VENUE */
  .venue-card {
    grid-template-columns: 1fr;
    height: auto;
    padding: 20px;
  }

  .venue-text {
    width: 100%;
    padding: 0;
  }

  .venue-title {
    font-size: 36px;
  }

  .venue-desc {
    font-size: 18px;
    padding-bottom: 30px;
  }

  .venue-image img {
    /* position: relative; */
    right: 0;
    /* top: auto; */
    width: 50%;
    height: auto;
    margin-top: 20px;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .btn-register-dark,
  .btn-orange,
  .btn-schedule,
  .btn-book {
    font-size: 16px;
  }
  .btn-register-dark {
    margin-top: 0px;
  }
  .hero-content > svg {
    max-width: 70%;
  }

  .flip-back h6::after {
    bottom: 120px;
  }
} /* FORM */
.nomination-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nomination-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.submit-nomination {
  background-color: #ff8f1c;
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
}
.submit-nomination:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ══════════════════════════════════════════════════════
   SHARED HAMBURGER BUTTON (all pages)
   ══════════════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ══════════════════════════════════════════════════════
   SHARED MOBILE MENU FULL-SCREEN OVERLAY (all pages)
   ══════════════════════════════════════════════════════ */

.mobile-menu-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  flex-direction: column;
  background: linear-gradient(160deg, #ff901d 0%, #b80c22 50%, #37214e 100%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* Header row: logo + close button */
.mobile-menu-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  flex-shrink: 0;
}

.mobile-menu-overlay__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-overlay__logo-text {
  font-family: "Rethink Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Close (×) button */
.mobile-menu-overlay__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.mobile-menu-overlay__close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Nav links list */
.mobile-menu-overlay__links {
  list-style: none;
  margin: 16px 0 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay__links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-menu-overlay__links li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav-link {
  display: block;
  padding: 20px 0;
  font-family: "Rethink Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.01em;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.mobile-nav-link:hover {
  opacity: 0.8;
}

.mobile-nav-active {
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — show hamburger, hide desktop nav links
   ══════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .hero-nav {
    padding: 16px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-logo svg {
    width: 90%;
  }
}
