/* =========================================================
   site-style.css — Complete, cross-browser, optimized CSS
   Generated: safe optimizations + vendor fallbacks
   Drop-in ready for Chrome, Edge, Safari, Firefox, iOS and Android browsers.
   ========================================================= */

/* ================= GLOBAL RESET & BASE ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-color: rgb(60,117,184);
  --footer-gradient: linear-gradient(90deg, rgb(86,187,237), rgb(60,117,184));
  --text-color: #000;
  --link-color: #fff;
  --nav-color: rgb(255, 240, 240);
  --nav-shift: 30px;
  --max-content-width: 1200px;
  --accent-1: rgb(120,170,60);
  --accent-2: rgb(86,187,237);
  --accent-3: rgb(60,117,184);
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}

p {
  border-left: 4px solid var(--header-color);
  padding-left: 10px;
  margin: 10px 0;
}

/* Headings use Inter if available */
h1,h2,h3,h4,h5,h6 { font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }

h2 { letter-spacing: 1.2rem; }

/* reduce over-specificity for first/last child reset */
body > :first-child,
body > :last-child { margin: 0 !important; padding: 0 !important; }

/* Utility */
.container { max-width: var(--max-content-width); margin: 0 auto; padding: 0 16px; box-sizing: border-box; }

/* ================= ANIMATIONS & PREFLIGHT ================= */
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@keyframes slideUp   { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-10px); } }
@keyframes rollIn { 0% { transform: translateX(-100vw) rotate(0deg); } 100% { transform: translateX(0) rotate(720deg); } }

/* Accessibility focus outlines (visible) */
:focus { outline: 3px solid rgba(34,150,243,0.18); outline-offset: 2px; -moz-outline-radius: 4px; }
a:focus { outline-style: solid; }

/* ================= HEADER & LOGO ================= */
header { position: relative; z-index: 40; }
header .logo {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 60;
}
header .logo img {
  display: block;
  max-height: 100px;
  width: auto;
  transition: max-height 0.25s ease, transform 0.25s ease;
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
}

/* ================= NAV LINKS ================= */
.nav-links {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 70;
  -webkit-font-smoothing: antialiased;
}

.nav-links ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 5px;
  background: rgba(60,117,184,0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  list-style: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transform-origin: center right;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--link-color);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 10px 14px;
  border-radius: 6px;
  background: transparent;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  transition: background 0.2s ease, transform 0.18s ease;
  will-change: transform, background;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a.register { background-color: var(--accent-1); color: #fff; }
.nav-links a:hover { background-color: rgba(86,187,237,0.14); }
.nav-links a.register:hover { background-color: rgba(120,170,60,0.2); }

/* JS classes for show/hide */
.nav-links.showing { animation: slideDown .28s ease forwards; }
.nav-links.hiding  { animation: slideUp .28s ease forwards; }

/* ================= HAMBURGER BUTTON ================= */
.menu-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: rgba(60,117,184,0.9);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  font-size: 1.6rem;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  transition: transform .28s ease, background .28s ease;
  z-index: 75;
  will-change: transform, background;
}

.menu-toggle.active { transform: rotate(-90deg); }
.menu-toggle:hover { background-color: rgba(120,170,60,0.85); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  header .logo img { max-height: 50px; }

  /* show hamburger only on mobile/tablet */
  .menu-toggle { display: flex; }

  /* mobile nav */
  .nav-links {
    display: none;
    top: 70px;
    right: 10px;
    flex-direction: column;
    width: 120px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: a(60,117,184,0.9); /* make parent fully transparent */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-links.showing { display: flex; }

  /* ul in mobile menu */
  .nav-links ul {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border: none;
  }

  /* links in mobile menu */
  .nav-links a {
    font-size: .95rem;
    padding: 8px 10px;
    display: block;
  }
}

/* explicitly hide hamburger on wide screens */
@media (min-width: 1201px) {
  .menu-toggle { display: none !important; }
}

/* ================= PRELOADER ================= */
.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--header-color);
}
.loader {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transform-origin: center;
  animation: rollIn 1.5s cubic-bezier(.25,1.25,.5,1) forwards;
}
.loader img { width: auto; max-height: 100%; border-radius: 50%; display: block; padding: 2px; }

/* ================= FOOTER ================= */
footer {
  position: relative;
  background:
    url('Images/soil_profile-removebg-preview.png') repeat-x bottom center / auto 80px,
    var(--footer-gradient);
  color: var(--link-color);
  padding: 28px 18px;
  box-sizing: border-box;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 0;
  max-width: var(--max-content-width);
  margin: 0 auto;
}
footer .logofoot img { max-height: 180px; width: auto; display: block; background: #fff; border-radius: 50%; padding: 2px; }
footer .footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
footer .footer-links .link-column { list-style: none; margin: 0; padding: 0; }
footer .footer-links .link-column h3 { color: var(--link-color); margin-bottom: 10px; font-weight: 700; font-size: 1.1rem; }
footer .footer-links a { color: var(--link-color); text-decoration: none; font-weight: 700; transition: opacity .18s ease; }
footer .footer-links a:hover { text-decoration: underline; opacity: 0.95; }
footer .copyright-statement {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

/* Footer responsive tweaks */
@media (max-width:700px) {
  footer .footer-container { flex-direction: column; align-items: center; }
  footer .footer-links { gap: 18px; flex-direction: row; }
}

/* ================= WELCOME / HERO ================= */
.welcome-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.welcome-section .carousel {
  width: 100%;
  height: 60vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.welcome-section .carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  display: flex;
  transition: transform .8s ease-in-out;
  will-change: transform;
}
.welcome-section .slide { flex: 0 0 100%; height: 100%; }
.welcome-section .slide > img { width: 100%; height: 100%; object-fit: cover; display: block; }

.welcome-title {
  font-size: clamp(1rem, 10vw, 3rem);
  letter-spacing: clamp(0.2rem, 1vw, 2rem);
  transform: scaleY(0.8);
  text-transform: uppercase;
  text-align: center;
  word-break: break-word;
  max-width: 1000px;
  color: var(--accent-3);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  margin: 40px 0;
}

/* nav arrows (prev/next) */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,166,249,0.15);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 10;
  transition: background-color .2s ease, transform .15s ease;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { background-color: rgba(60,117,184,0.8); }

@media (max-width: 800px) {
  .welcome-title { position: relative; color: transparent; text-shadow: none; margin: 0; }
  .welcome-title::before {
    content: attr(data-short);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--accent-3);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
  }
}

/* ================= SLIDER ===================== */
.slider-wrapper {
  width: 100%;
  overflow-x: hidden; 
  position: relative;
  margin: 50px 0;
}

.slider {
  width:100%; min-width:900px; overflow:hidden; margin:0 auto;
  height:var(--height,400px); background-color:white; position:relative;
}
.slider .item-cont {
  display:flex; width:100%; position:relative;
  min-width: calc(var(--width * var(--quantity)));
}
.slider .item-cont .item {
  width: var(--width,200px); height:var(--height,400px);
  position:absolute; left:100%;
  animation: autoRun 40s linear infinite;
  animation-delay: calc((-40s / var(--quantity)) * (var(--position) - 1));
  will-change: left;
}
@keyframes autoRun { from{ left:100%; } to{ left: calc(-1 * var(--width,200px)); } }
.slider .item-cont .item img {
  width:100%; height:100%; object-fit:contain; object-position:center; display:block;
}
.slider .item p {
  font-weight:bold; font-size:1rem; color:black; display:flex;
  align-items:center; justify-content:center; height:100%; width:100%; text-align:center; margin:0;
}
/* Smaller screens */
@media (max-width: 600px) {
  .slider .item p {
    font-size: 0.9rem; /* smaller for mobile */
  }
}

@-webkit-keyframes autoRun { from{ left:100%; } to{ left: calc(-1 * var(--width,200px)); } }
.slider .item-cont .item {
  -webkit-animation: autoRun 40s linear infinite;
          animation: autoRun 40s linear infinite;
  -webkit-animation-delay: calc((-40s / var(--quantity)) * (var(--position) - 1));
          animation-delay: calc((-40s / var(--quantity)) * (var(--position) - 1));
}

/* ================= WHAT WE DO (BANDS) ================= */
#what-we-do { text-align: center; overflow: hidden; margin: 50px 0; }
#what-we-do .wwd-wrapper { display: flex; justify-content: center; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
#what-we-do h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: clamp(0.1rem, 0.5vw, 1rem);
  transform: scaleY(0.85);
  text-transform: uppercase;
  text-align: center;
  word-break: break-word;
  margin-bottom: 40px;
  color: var(--accent-3);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.15);
}
#what-we-do .bands-container { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 5px; transition: transform 0.3s ease, text-shadow 0.3s ease; will-change: transform, text-shadow; }
#what-we-do .bands-container p { width: 200px; text-align: center; margin: 0; line-height: 1.4; }
#what-we-do .bands-container:nth-child(1) { border-left: 10px solid var(--accent-3); }
#what-we-do .bands-container:nth-child(2) { border-left: 10px solid var(--accent-1); }
#what-we-do .bands-container:nth-child(3) { border-left: 10px solid var(--accent-2); }
#what-we-do figure { width: 200px; height: 200px; margin: 0; overflow: hidden; background: #fff; position: relative; z-index: 1; transition: transform .3s ease, box-shadow .3s ease; will-change: transform, box-shadow; }
#what-we-do figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
#what-we-do figure figcaption { position: absolute; bottom: 5px; right: 0; color: #fff; text-transform: uppercase; font-weight: 700; font-size: 2em; white-space: nowrap; transform: scaleY(2); transition: transform .3s ease, text-shadow .3s ease; }
#what-we-do figure figcaption:hover { transform: scaleX(1.05);}
#what-we-do .bands-container:hover { transform: scale(1.05);}

#what-we-do.no-borders .bands-container:nth-child(1),
#what-we-do.no-borders .bands-container:nth-child(2),
#what-we-do.no-borders .bands-container:nth-child(3) {
  border-left: none !important;
}

#what-we-do.no-borders a { text-decoration: none !important; color: inherit !important; }
#what-we-do.no-borders h3 { color: #646363 !important; text-decoration: none !important; font-weight: 800; font-size: 2rem; text-transform: uppercase;}
#what-we-do.no-borders a h3,
#what-we-do.no-borders a:link h3,
#what-we-do.no-borders a:visited h3,
#what-we-do.no-borders a:hover h3,
#what-we-do.no-borders a:active h3 {
  color: #333 !important;
  text-decoration: none !important;
}
#what-we-do.no-borders a:hover h3 { color: #222 !important; }

#what-we-do.no-borders .wwd-wrapper { align-items: flex-start; }
#what-we-do.no-borders .bands-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#what-we-do.no-borders .bands-container figure,
#what-we-do.no-borders .bands-container p { width: 220px; }
#what-we-do.no-borders .bands-container p {
  text-align: center;
  margin-top: 10px;
  min-height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 720px) {
  #what-we-do .wwd-wrapper { flex-direction: column; align-items: center; }
  #what-we-do .bands-container { flex-direction: row; width: 100%; justify-content: center; }
}

/* ================= MAHI (about/mission) ================= */
.mahi {
  position: relative;
  padding: 60px 20px;
  color: #000;
  background-size: cover;
  background-position: center;
  padding: 100px;
}
.mahi::before {
  content: "";
  position: absolute; inset: 0; background: rgba(255,255,255,0.85); z-index: 0;
}
.mahi .content-row {
  display: flex; gap: 40px; align-items: flex-start; position: relative; z-index: 1; flex-wrap: nowrap;
}
.mahi .content-row img {
  flex: 0 1 auto; width: 800px; max-width: 80vw; height: auto; border-radius: 4px; object-fit: cover; transition: transform .3s ease;
}
.mahi .text-content { flex: 1 1 auto; min-width: 250px; color: black; font-size: 1.1em; line-height: 1.6; text-align: left; }

.mahi::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 0;
}

.mahi-alt {
  color: white;
}
.mahi-alt::before {
  background: rgba(0,0,0,0.85);
}
.mahi-alt .text-content {
  color: white;
}
@media (max-width: 1200px) {
  .mahi .content-row { flex-direction: column; align-items: center; gap: 20px; }
  .mahi .content-row img, .mahi .text-content { width: 90%; }
  .mahi .text-content { margin-top: 20px; }
}

/* ================= SPONSORS SECTION ================= */
.sponsors {
  position: relative; padding: 60px 20px; color: #000; background-size: cover; background-position: center;
}
.sponsors::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.85); z-index: 0; }
.sponsors .content-row { display: flex; gap: 40px; align-items: flex-start; position: relative; z-index: 1; flex-wrap: nowrap; }
.sponsors .sponsor-logo { flex: 0 0 600px; min-width: 500px; display:flex; justify-content:center; align-items:center; }
.sponsors .text-content { flex: 1 1 auto; min-width: 250px; color: black; font-size:1.1em; line-height:1.6; text-align:left; }

/* Sponsor logos grid */
.sponser-logo { display:flex; justify-content:center; padding: 40px; margin: 10px 0 50px 0; width:100%; }
.logo-parent { display:flex; flex-direction:column; gap:30px; padding:10px; width:100%; max-width:1000px; }
.logo-container { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px; }
.logo-parent .logo-container:first-child .sponser-logo-box { width:320px; height:160px; }
.sponser-logo-box { height:120px; width:240px; border-radius:4px; display:flex; justify-content:center; align-items:center; background-color:#ebebeb; transition: transform .28s ease, box-shadow .28s ease; transform-origin:center; }
.sponser-logo-box img { width:80%; height:80%; object-fit:contain; }
.sponser-logo-box:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

@media (max-width: 1200px) {
  .sponsors .content-row { flex-direction: column; align-items: center; gap: 20px; }
  .sponsors .sponsor-logo { flex: 1 1 100%; min-width: unset; }
  .sponsors .text-content { width: 90%; margin-top: 20px; }
}

@media (max-width: 720px) {
  .sponser-logo-box { width: 150px; height: 80px; }
}

/* ================= NAV EXEC ================= */
.nav-exec ul { display:flex; gap:10px; list-style:none; margin:10px; padding:5px; align-items:center; justify-content:flex-start; margin-left:-6px; }
.nav-exec a {
  display:inline-flex; align-items:center; justify-content:center; color:white; text-decoration:none;
  text-transform:uppercase; background: rgba(60,117,184); font-weight:700; font-size:1rem;
  padding:10px 15px; border-radius:4px; text-shadow:1px 1px 3px rgba(0,0,0,0.3); transition: background .25s ease;
}
.nav-exec a:hover { background-color: rgba(120,170,60,0.9); }

/* ================= PARTNERS PAGE (PANE GRID) ================= */
.sponsor-wrapper { display:flex; justify-content:center; }
.sponsor-pane-container {
  display:flex; flex-wrap:wrap; gap:20px; padding:20px;
  max-width: 680px; margin: 20px auto; justify-content:flex-start;
}
.sponsor-pane {
  width:200px; height:300px; background:#f5f5f5; border-radius:6px; display:flex; flex-direction:column;
  justify-content:flex-start; align-items:center; padding:20px; box-shadow:0 6px 18px rgba(0,0,0,0.06); transition: transform .28s ease, box-shadow .28s ease;
}
.sponsor-pane:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

/* ================= IMAGE CONTAINER ================= */
.sponser-img-container {
  height:100px; display:flex; align-items:center; justify-content:center; width:100%; margin-bottom:20px;
}
.sponser-img-container img {
  max-height:100%; max-width:100%; object-fit:contain; display:block;
}

.pane-content { width:100%; display:flex; flex-direction:column; align-items:flex-start; flex-grow:1; }
.pane-content h3 { font-size:1.25rem; margin:0 0 10px 0; letter-spacing:0.02rem; }
.pane-content p { font-size:0.9rem; margin:0 0 12px 0; color:#333; }

.nav-partners ul { display:flex; gap:10px; list-style:none; padding:0; margin:0; }
.nav-partners a {
  display:inline-flex; align-items:center; justify-content:center; color:white; text-decoration:none; text-transform:uppercase;
  background: rgba(60,117,184); font-weight:700; font-size:0.8rem; padding:6px 10px; border-radius:4px; text-shadow:1px 1px 3px rgba(0,0,0,0.2);
}
.nav-partners a:hover { background-color: rgba(120,170,60,0.9); }

@media (max-width: 680px) {
  .sponsor-pane-container { max-width: 530px; }
  .sponsor-pane { width:150px; height:225px; padding:12px; }
  .sponser-img-container { height:60px; margin-bottom:10px; }
  .sponser-img-container img { max-height:100%; }
  .pane-content h3 { font-size:1rem; }
  .pane-content p { font-size:0.75rem; }
  .nav-partners a { font-size:0.6rem; padding:5px 8px; }
}

/* ================= EXEC / TEAM ================= */
.exec, .event-heading { text-align:center; padding:20px; background:var(--footer-gradient); color:white; overflow-x:hidden; }
.exec h1, .event-heading h1 {
  font-size: clamp(2rem, 10vw, 8em);
  letter-spacing: clamp(0.2rem,1vw,2rem);
  transform: scaleY(.8); margin-bottom:20px; text-transform:uppercase; word-break:break-word;
}
.exec h2 { font-size: clamp(1.5rem, 5vw, 3rem); letter-spacing: normal; max-width: 90vw; word-break: break-word; white-space: normal; }
.team-pair { display:flex; justify-content: space-around; flex-wrap: wrap; margin:40px 0; }
.exec-row { display:flex; flex-direction:column; align-items:center; gap:15px; max-width:90vw; }
.exec-row .figure-row { display:flex; justify-content:center; gap:20px; flex-wrap: nowrap; }
.exec-row .figure-row figure { flex:0 0 20vw; max-width: 220px; }
.exec-row img { width:100%; max-width:200px; height:auto; object-fit:cover; border-radius:10px; box-shadow:0 4px 8px rgba(0,0,0,0.18); transition: transform .28s ease; }
.exec-row img:hover { transform: scale(1.05); }
.exec-row .role { font-size: clamp(0.8em,2.5vw,1.2em); font-weight:700; color:white; text-align:center; word-wrap:break-word; }
.exec-row .name { font-size: clamp(0.8em,2vw,1em); color:#fff; font-weight:bold; text-align:center; word-wrap:break-word; }

/* ================= EVENTS / MAIN ================= */
.events, .main {
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  padding:60px 20px; position:relative; overflow:hidden; background-size:cover; background-position:center;
  min-height: 400px;
}
.events { max-width: var(--max-content-width); margin: 40px auto; border-radius:10px; }
.events::before, .main::before { content:""; position:absolute; inset:0; background:rgba(255,255,255,0.85); z-index:0; }
.events > *, .main > * { position:relative; z-index:1; }
.events h1,h2{ font-size:2em; margin-bottom:15px; }
.events p{ font-size:1.1em; line-height:1.6; max-width:700px; margin:0 auto 30px; color:inherit; }
.main p { border: none; }

.events .images-container { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:20px; }
.events .images-container img { flex:1 1 200px; max-width:450px; aspect-ratio:1.5/1; object-fit:cover; border-radius:10px; box-shadow:0 4px 8px rgba(0,0,0,0.12); transition: transform .28s ease; }
.events .images-container img:hover { transform: scale(1.05); }

.nav-events ul { display:flex; gap:10px; list-style:none; margin:10px; padding:5px; align-items:center; border-radius:25px; }
.nav-events a {
  display:inline-flex; align-items:center; justify-content:center; color:white; text-decoration:none; text-transform:uppercase;
  background: rgba(0,166,249,0.6); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,0.2); font-weight:700; font-size:1rem;
  padding:10px 15px; border-radius:20px; text-shadow:1px 1px 3px rgba(0,0,0,0.3); transition: background .18s ease;
}
.nav-events a:hover { background-color: rgba(120,170,60,0.9); }

@media (max-width:1200px) {
  .events { margin:20px 15px; padding:40px 20px; }
  .events .images-container img { flex:1 1 150px; max-width:300px; }
}
@media (max-width:700px) {
  .events .images-container img { flex:1 1 120px; max-width:300px; }
}

/* Section overlays and color specifics */
#section-2::before { background: rgba(0,0,0,0.7); }
#section-3::before { background: rgba(255,255,255,0.6); }
#section-2, #section-2 * { color: #cbcbcb; }
#section-1, #section-1 *, #section-3, #section-3 * { color: #333333; }

/* ================= MERCH / IN-PROGRESS ================= */
.in-progress { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:2rem 1rem; gap:1.5rem; height:800px; background-color:#fff; }
.in-progress h1 { font-size: clamp(2rem,5vw,3rem); margin:0; }
.in-progress p { font-size: clamp(1rem,3vw,1.5rem); margin:0; color:#333; }
.in-progress img { max-width:200px; height:auto; }

/* ================= SMALL HELPERS / REDUCED REPEAT ================= */
.u-center { display:block; margin-left:auto; margin-right:auto; }
.flex { display:flex; }
.flex-col { display:flex; flex-direction:column; }
.hide { display:none !important; }
.show { display:block !important; }

/* ================= PRINT FRIENDLY ================= */
@media print {
  .nav-links, .menu-toggle, .loader-wrapper { display:none !important; }
  header .logo img { max-height: 60px; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ================= SMALL SCREEN TWEAKS ================= */
@media (max-width: 680px) {
  :root { --max-content-width: 520px; }
  h2 { letter-spacing: 0.25rem; }
  .welcome-section .carousel { height: 45vh; }
  .sponsor-pane { width: 140px; height: 210px; padding: 10px; }
}

/* End of file - site-style.css */
