

 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: #000024;
      color: #000;
    }

/* ===== TOP BAR ===== */

    .top-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 64px;
      background: #000024; /* dark navy */
      color: #ffffff;
      padding: 40px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
      border-bottom: 1px solid #BF9B30; /* Added border under navbar */
      font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 16px;
    }

.menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 24px;   /* smaller */
  height: 18px;  /* smaller */
  position: relative;
}

/* lines */
.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease,
    bottom 0.25s ease;
}

/* default hamburger positions */
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 8px;
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* X state */
body.menu-open .menu-toggle span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;             /* THIS hides the middle line */
}

body.menu-open .menu-toggle span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}
    .right-actions {
      display: flex;
      gap: 16px;
    }

    .outline-btn {
      border: 1px solid #c49c58; /* soft gold */
      padding: 8px 24px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      font-size: 11px;
      color: #ffffff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .outline-btn:hover {
      background: #c49c58;
      color: #000024;
    }

    /* ===== MAIN PAGE CONTENT (BEHIND MENU) ===== */

    .page-content {
      padding-top: 64px; /* space for fixed top bar */
    }

    .hero {
      height: calc(100vh - 64px);
      overflow: hidden;
    }

    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ===== SLIDE-OUT MENU PANEL ===== */

.menu-panel {
  position: fixed;
  top: 64px;              /* just under the navbar */
  left: 0;
  width: 100%;
  height: 318px;          /* match your image height */
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 900;
}

    body.menu-open .menu-panel {
      transform: translateX(0);
    }

.menu-sidebar {
  width: 260px;
  background: #ffffff;
  padding: 0 40px;        /* remove big top/bottom padding */
  display: flex;          /* make it a flex container */
  align-items: center;    /* vertically center its content */
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
 .menu-links a {
      text-decoration: none;
      color: #000000;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 13px;
    }

    .menu-links a:hover {
      text-decoration: underline;
    }

    .menu-hero {
      flex: 1;
      overflow: hidden;
    }

    .menu-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.lhs_header h1{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 22%;
    color: #FCB85B;
}

.hero-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #000024;
    }

    .hero-text {
    flex: 0 0 45%;          /* was width: 50% */
    max-width: 45%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .hero-text h4 {
      color: #BF9B30;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      margin-bottom: 16px;
      font-family: "Montserrat", sans-serif;
    }

    .hero-text h1 {
      font-size: 50px;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 24px;
      color: #ffffff;
      font-family: "Montserrat", sans-serif;
    }

    .hero-text p {
      color: #ddd;
      font-size: 14px;
      line-height: 1.6;
      max-width: 400px;
      font-family: "Montserrat", sans-serif;
        font-weight: 500;
      margin-bottom: 32px;
    }

    .hero-text a {
      background-color: #FCB85B;
      color: #ffffff;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.1em;
      font-size: 14px;
      text-decoration: none;
      padding: 14px 28px;
      display: inline-block;
      border-radius: 2px;
      transition: background 0.3s ease;
      font-family: "Montserrat", sans-serif;
        width: 30%;
    }

    .hero-text a:hover {
      background-color: #d4b45e;
    }

    .hero-image {
    position: relative;
    flex: 0 0 55%;          /* was width: 50% */
    max-width: 55%;
    min-height: 100vh;
    overflow: hidden;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* fade overlay from image to background */
    .hero-image::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to left, rgba(2, 0, 40, 1) 0%, rgba(2, 0, 40, 0.2) 60%);
    }

.events-section {
  background-color: #020028;
  color: #ffffff;
  padding: 80px 80px 120px;
}

.events-header {
  max-width: 720px;
    font-family: "Montserrat", sans-serif;
  margin-bottom: 76px;
}

.events-header h2 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -3%;
    font-style: semibold;
    
}

.events-header p {
  font-size: 15px;
  line-height: 24px;
  color: #d5d5e0;
    font-style: regular;
    letter-spacing: 0%;
    font-weight: 400;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 311px);
  gap: 112px;
  justify-content: center;
}

.events-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 311px);
  gap: 112px;
  margin-top: 40px;
justify-content: center;
}

/* ===== Base card ===== */

.event-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  max-height: 464px;
  width: 311px;
    height: 464px;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: "Montserrat", sans-serif;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.event-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* gradient overlay */
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 15%,
    rgba(0, 0, 0, 0.1) 55%,
    rgba(0, 0, 0, 0) 80%
  );
}

.event-card-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  z-index: 1;
}

.event-card-content h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 16px;
}

/* description is hidden by default */
.event-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #f1f1f1;
  margin-bottom: 16px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* show description on hover */
.event-card:hover .event-card-description {
  max-height: 200px;      /* enough space for the text */
  opacity: 1;
}

/* button */
.event-btn {
  display: inline-block;
  padding: 10px 26px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid #bf9b30;
  color: #ffffff;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.event-card:hover .event-btn {
  background: #bf9b30;    /* filled on hover */
  color: #020028;
  border-color: #bf9b30;
}

/* ===== Per-card images + hover swap for first card ===== */

/* Football card default image */
.event-card--football .event-card-bg {
  background-image: url("../images/Event%20card%20(2).jpg");
}

/* Football card hover image */
.event-card--football:hover .event-card-bg {
  background-image: url("../images/Event%20card.jpg");
}

/* Other cards (single static image each) */
.event-card--games .event-card-bg {
  background-image: url("../images/Event%20card2.jpg");
}

.event-card--games:hover .event-card-bg {
  background-image: url("../images/Event%20card2%20(1).jpg");
}

.event-card--cruise .event-card-bg {
  background-image: url("../images/Event%20card3.jpg");
}

.event-card--cruise:hover .event-card-bg {
  background-image: url("../images/Event%20card3%20(1).jpg");
}

.event-card--amapiano .event-card-bg {
  background-image: url("../images/Event%20card3.jpg");
}

.event-card--amapiano:hover .event-card-bg {
  background-image: url("../images/Event%20card3%20(1).jpg");
}

.event-card--owambe .event-card-bg {
  background-image: url("../images/Event%20card5%20(1).jpg");
}

.event-card--owambe:hover .event-card-bg {
  background-image: url("../images/Event%20card5%20(2).jpg");
}

.event-card--combo .event-card-bg {
  background-image: url("../images/Event%20card6.jpg");
}

.event-card--combo:hover .event-card-bg {
  background-image: url("../images/Event%20card6%20(1).jpg");
}

/* ===== FINAL NIGHT / FINAL VIBES SECTION ===== */

.ultimate-section {
  border-top: 2px solid #020028;    /* thin dark line at top */
  margin-top: 40px;
  padding: 40px 40px;
  color: #020028;
  font-family: "Montserrat", sans-serif;
}

.ultimate-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* left column */
.ultimate-text {
  flex: 0 0 50%;
}

.ultimate-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.31em;
  font-size: 13px;
  color: #FCB85B;
  margin-bottom: 5px;
    font-weight: 500;
}

.ultimate-heading {
  font-size: 55px;
  line-height: 1.1;
 
  color: #ffffff;
    font-weight: 600;
}

.ultimate-copy {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
}

/* button */
.ultimate-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 2px;
  border: 1px solid #bf9b30;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
    font-weight: 500;
  text-decoration: none;
  color: #000000;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ultimate-btn:hover {
  background: #bf9b30;
  color: #020028;
  border-color: #bf9b30;
}

/* right column */
.ultimate-visual {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ultimate-image {
  height: auto;
  display: block;
}

/* hashtags line */
.ultimate-tags {
  margin-top: 6px;
  font-size: 23px;
  color: #020028;
    font-family: "Montez", cursive;
}
:root {
  --dd-navy: #020028;
  --dd-gold: #bf9b30;
  --dd-light: #d5d5e0;
  --bg: #020028;         /* page dark background */
  --card-bg: #ffffff;
  --muted: #9b97a8;
  --accent: #BF9B30;     /* your gold */
  --radius: 14px;
  --gap: 28px;
  --max-width: 1180px;
  --text: #ffffff;
  --container-pad: 48px;
}

/* ===== SPONSOR SECTION ===== */

.sponsor-section {
  background-color: var(--dd-navy);
  color: #ffffff;
  padding: 80px 80px 100px;
  font-family: "Montserrat", sans-serif;
}

.sponsor-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.sponsor-text {
  flex: 0 0 50%;
}

.sponsor-title {
  font-size: 48px;
    font-weight: 600;
  line-height: 1.15;
  margin: 0 0 12px;
}

.sponsor-subtitle {
  font-size: 26px;
  margin: 0 0 24px;
    font-weight: 600;
  color: var(--dd-gold);
}

.sponsor-copy {
  font-size: 14px;
  line-height: 1.8;
    font-weight: 400;
  color: var(--dd-light);
  max-width: 520px;
  margin-bottom: 32px;
}

.sponsor-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
}

/* reuse your outline-style button */
.outline-btn {
  border: 1px solid var(--dd-gold);
  padding: 12px 26px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.outline-btn:hover {
  background: var(--dd-gold);
  color: var(--dd-navy);
}

/* right side image */
.sponsor-visual {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
}

.sponsor-image {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}

/* ⭐ SPONSORS & PARTNERS SECTION */
.partners-section {
  background: #e9eef6; /* light blue/gray like screenshot */
  padding: 60px 40px;
  text-align: left;
  margin-bottom: 50px;
}

.partners-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--dd-navy);
  max-width: 1300px;
  margin: 0 auto 32px;
  font-family: "Montserrat", sans-serif;
}

/* logos row */
.partners-logos {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.partners-logos img {
  height: 72px;   /* tuned to your screenshot */
  width: auto;
  object-fit: contain;
  filter: none;   /* keeps logos full color */
}
/* ===== FOOTER ===== */

.site-footer {
  background-color: var(--dd-navy);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  border-top: 1px solid var(--dd-gold);
 
}

hr{
     border: 2px solid var(--dd-gold);
    opacity: 70%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
    flex: 1 1 0;
}

.footer-brand,
.footer-column {
  /* all equal now */
  flex: 1 1 0;
}

.footer-powered {
  font-family: "Playfair Display", "Georgia", serif; /* or any script font you use */
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  display: block;
}


.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 16px;
    font-weight: 600;
  color: var(--dd-gold);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--dd-light);
}

.footer-list li {
  margin-bottom: 8px;
}

/* shared layout for links with icons */
.footer-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

/* specific sizing for contact icons */
.footer-contact-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 80px 24px;
  font-size: 12px;
  color: var(--dd-light);
}
    /* Errors */
    .error-message {
      font-size: 12px;
      color: #ffb3b3;
      margin-top: 4px;
    }

    .hidden {
      display: none;
    }

.sponsorship-section {
  background: var(--bg);
  color: var(--text);
  padding: 72px 0;
  font-family: "Montserrat", sans-serif;
}

.sponsorship-section .container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* top area */
.sponsorship-top {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.sponsorship-intro .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.95;
}

.sponsor-heading {
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 18px 0;
  font-weight: 700;
}

.sponsor-desc {
  color: #cfcfdf;
  max-width: 60ch;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(191,155,48,0.98);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  background: transparent;
}

/* illustration */
.sponsor-illustration img {
  width: 100%;
  height: auto;
  max-width: 360px;
  display: block;
  margin-left: auto;
  object-fit: contain;
}

/* packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 24px;
  align-items: stretch;
}

/* package card */
.package {
  background: var(--card-bg);
  color: #111;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(2,7,18,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.package:hover { transform: translateY(-6px); }

.package .pkg-head {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: .6px;
}

/* highlighted center card */
.package.highlight {
  background: var(--accent);
  color: #0b0b0d;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(191,155,48,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.package.highlight .pkg-head { color: #111; }
.package.highlight .pkg-list .tick { color: rgba(0,0,0,0.65); }

/* package list */
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.pkg-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(3,5,10,0.85);
  font-size: 14px;
  line-height: 1.4;
}

/* checkmark */
.pkg-list .tick {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  margin-top: 4px;
}

/* For highlighted card make checkmarks darker */
.package.highlight .pkg-list .tick {
  color: #111;
  background: rgba(255,255,255,0.08);
}

/* total / footer lines could be added here if needed */
.package .price { font-weight:700; margin-top:auto; }

/* LET'S TALK block */
.lets-talk {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  padding-top: 28px;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.lets-img img { 
  width: 120px; 
  height: auto; 
  display:block; }

.lets-copy h3 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 24px;
}

.lets-copy p {
  color: #cfcfdf;
  margin: 0;
  max-width: 60ch;
  font-size: 14px;
}

.lets-copy a{
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

@media (max-width: 600px) {
  .lets-talk {
    flex-direction: column;      /* stack image above text */
    text-align: center;          /* center the text */
    gap: 15px;                   /* reduce spacing */
    padding: 20px;
  }

  .lets-img img {
    display: none;/* slightly smaller image */
  }

  .lets-copy p {
    max-width: 100%;             /* allow full width on mobile */
    font-size: 15px;             /* slightly larger for readability */
  }

  .lets-copy h3 {
    font-size: 22px;
  }
   /* Sponsors & Partners */
  .partners-section {
    padding: 50px 20px;
  }

  .partners-title {
    text-align: center;
    font-size: 24px;
  }

  .partners-logos {
    gap: 24px;
  }

  .partners-logos img {
    height: 48px;
  }
}

/* responsive */
@media (max-width: 1024px) {
  .sponsorship-top { grid-template-columns: 1fr 260px; gap: 18px; }
  .sponsor-illustration img { max-width: 260px; }
  .packages-grid { grid-template-columns: 1fr; } /* stack packages on tablet */
  .lets-talk { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 520px) {
  .sponsor-heading { font-size: 28px; }
  .lets-img img { width: 100px; }
  .sponsorship-section { padding: 36px 0; }
}


    /* Responsive */
    @media (max-width: 1024px) {
      .event-page {
        flex-direction: column;
      }

      .event-left {
        padding: 24px 20px 40px;
      }

      .event-right {
        padding: 28px 20px 40px;
      }

      .event-main-grid {
        flex-direction: column;
      }

     .event-image,
  .event-info-card {
    width: 100%;
    height: auto;       /* let them grow naturally on small screens */
  }
    }

    @media (max-width: 600px) {
      .event-selector {
        padding: 14px;
      }

      .event-title {
        font-size: 20px;
      }

      .event-price {
        font-size: 24px;
      }

      .event-description {
        font-size: 13px;
      }

      .event-right {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
    }
/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .sponsor-section {
    padding: 60px 40px 80px;
  }

  .sponsor-inner {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .sponsor-text,
  .sponsor-visual {
    flex: 0 0 auto;
    width: 100%;
  }

  .sponsor-visual {
    justify-content: flex-start;
  }

  .footer-inner {
    padding: 32px 40px 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .sponsor-title {
    font-size: 34px;
  }
    .sponsor-visual{
        display: none;
    }

  .sponsor-subtitle {
    font-size: 22px;
  }

  .sponsor-actions {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 20px 24px;
  }

  .footer-bottom {
    padding: 12px 20px 20px;
    text-align: center;
  }
}
/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .ultimate-section {
    padding: 60px 24px;
    margin-top: 90px;
  }

  .ultimate-inner {
    flex-direction: column;
    text-align: center;
  }

  .ultimate-text,
  .ultimate-visual {
    flex: 0 0 auto;
    width: 100%;
  }

  .ultimate-heading {
    font-size: 40px;
  }

  .ultimate-copy {
    margin-bottom: 24px;
  }
}

@media (max-width: 500px) {
  .ultimate-heading {
    font-size: 32px;
  }

  .ultimate-image {
    display: none;
  }

  .ultimate-tags {
    font-size: 16px;
  }
}




/* ===== Responsive tweaks ===== */

@media (max-width: 1024px) {
  .events-section {
    padding: 60px 40px 80px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 311px);
    justify-content: center;
  }
    .events-grid2 {
    grid-template-columns: repeat(2, 311px);
    justify-content: center;
  }

  .event-card {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .events-section {
    padding: 48px 20px 64px;
  }

  .events-header h2 {
    font-size: 30px;
  }

  .events-grid {
    grid-template-columns: 311px;
    justify-content: center;
  }
    
    .events-grid2 {
    grid-template-columns: 311px;
    justify-content: center;
  }

  .event-card {
    width: 311px;        /* stays the same */
    max-height: 464px;
  }
}

    @media (max-width: 700px) {
      .menu-sidebar {
        width: 220px;
        padding: 60px 24px;
      }
      .right-actions {
        gap: 8px;
      }
      .outline-btn {
        padding: 6px 14px;
        letter-spacing: 0.18em;
      }
       .hero-section {
        flex-direction: column;      /* stack text + image */
        min-height: auto;
           margin-top: 100px;
      }

      .hero-text,
      .hero-image {
        flex: 0 0 auto;
        max-width: 100%;
      }

      .hero-text {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
          font-size: 15px;
      }

      .hero-text h1 {
        font-size: 35px;
      }
        
        .hero-text a{
            width: 50%;
        }

      .hero-text p {
        margin: 0 auto 24px;
      }

      .hero-image {
        min-height: 320px;          /* fixed mobile height for image */
        height: 320px;      }
    }