/* ============================================
   BOSS ADULT CENTER — Global Stylesheet
   Ultraweb Marketing | 2026
   Font: Poppins (Google Fonts)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --red:        #D1181E;
  --red-dark:   #A61117;
  --red-light:  #F2D5DA;
  --teal:       #2A9D8F;
  --teal-dark:  #1D7268;
  --teal-light: #E0F4F2;
  --gold:       #C9A84C;
  --white:      #FFFFFF;
  --off-white:  #FAF8F5;
  --cream:      #F5F0E8;
  --gray-light: #F0EEEA;
  --gray-mid:   #888079;
  --gray-dark:  #3D3730;
  --text:       #2B2522;
  --text-light: #6B6360;

  --font: 'Cormorant Garamond', 'Georgia', serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.25s ease;
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 22px; }
body {
  font-family: var(--font);
  color: var(--text); font-weight: 500;
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text); font-weight: 500;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.3rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--text-light); line-height: 1.8; }
.lead { font-size: 1.15rem; color: var(--text); font-weight: 500; font-weight: 400; }
.overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.3);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,157,143,0.3);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 1rem; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section-sm {
  padding: 4rem 0;
}
.section-tight {
  padding: 3rem 0;
}
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-red { color: var(--red); }
.text-teal { color: var(--teal); }

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* --- Grid Helpers --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-bordered {
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: none;
}
.card-bordered:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

/* --- Dividers --- */
.divider {
  width: 60px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}
.divider-red {
  background: var(--red);
}
.divider-left {
  margin-left: 0;
}

/* --- Backgrounds --- */
.bg-white    { background: var(--white); }
.bg-cream    { background: var(--cream); }
.bg-off-white { background: var(--off-white); }
.bg-red      { background: var(--red); }
.bg-red-dark { background: var(--red-dark); }
.bg-teal     { background: var(--teal); }
.bg-teal-light { background: var(--teal-light); }
.bg-gray     { background: var(--gray-light); }
.bg-dark     { background: var(--gray-dark); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 148px;
  padding: 0.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-v3 img { height: 140px; width: auto; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text); font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { margin-left: 1rem; }
.nav-hamburger { display: none; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2B2522 0%, #A61117 40%, #D1181E 65%, #2A9D8F 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43,37,34,0.85) 40%, rgba(43,37,34,0.3) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(42,157,143,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(200,16,46,0.1) 0%, transparent 40%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}
.hero-text {}
.hero-text .overline {
  color: var(--teal);
  font-size: 0.8rem;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero-text h1 span {
  color: var(--teal);
  display: block;
}
.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: 300px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float 5s ease-in-out infinite;
}
.hero-visual-v4 img { width: 280px; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ============================================
   HOOK SECTION
   ============================================ */
.hook-section {
  padding: 7rem 0;
  background: var(--white);
}
.hook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hook-text h2 {
  margin-bottom: 1.5rem;
}
.hook-text h2 span { color: var(--red); }
.hook-text p { margin-bottom: 1.2rem; }
.hook-text .tagline-display {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--teal-dark);
  font-weight: 500;
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--teal);
  line-height: 1.5;
}
.hook-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hook-stat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-bottom: 4px solid var(--red);
  transition: var(--transition);
}
.hook-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hook-stat:nth-child(2) { border-color: var(--teal); margin-top: 1.5rem; }
.hook-stat:nth-child(3) { border-color: var(--teal); }
.hook-stat:nth-child(4) { border-color: var(--red); margin-top: -1.5rem; }
.hook-stat .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.hook-stat:nth-child(2) .stat-number,
.hook-stat:nth-child(3) .stat-number { color: var(--teal); }
.hook-stat .stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   TEAMS SECTION
   ============================================ */
.teams-section {
  padding: 7rem 0;
  background: var(--cream);
}
.teams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
}
.team-card:nth-child(2) { border-color: var(--teal); }
.team-card:nth-child(3) { border-color: var(--gold); }
.team-card:nth-child(4) { border-color: var(--teal); }
.team-card:nth-child(5) { border-color: var(--red); }
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.team-letter {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 44px;
  text-align: center;
  margin: 0 auto 1rem;
}
.team-card:nth-child(2) .team-letter { background: var(--teal); }
.team-card:nth-child(3) .team-letter { background: var(--gold); }
.team-card:nth-child(4) .team-letter { background: var(--teal); }
.team-card:nth-child(5) .team-letter { background: var(--red); }
.team-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text); font-weight: 500;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-card p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-light);
}
.teams-acronym {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.teams-letter-badge {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
}
.teams-letter-badge:nth-child(2) { background: var(--teal); }
.teams-letter-badge:nth-child(3) { background: var(--gold); }
.teams-letter-badge:nth-child(4) { background: var(--teal); }
.teams-letter-badge:nth-child(5) { background: var(--red-dark); }
.teams-dash { font-size: 1.4rem; color: var(--gray-mid); font-weight: 300; }
.teams-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
  padding: 7rem 0;
  background: var(--white);
}
.events-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.events-text .overline { display: block; margin-bottom: 0.5rem; }
.events-text h2 { margin-bottom: 1rem; }
.events-text p { margin-bottom: 2rem; }
.event-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.event-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}
.event-date-badge {
  min-width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.event-date-badge .month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.event-date-badge .day {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.event-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--text); font-weight: 500;
}
.event-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}
.event-info .event-location {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 0.3rem;
}
.event-free-badge {
  margin-left: auto;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ============================================
   BLUE ZONE SECTION
   ============================================ */
.bluezone-section {
  padding: 7rem 0;
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
}
.bluezone-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.12) 0%, transparent 70%);
}
.bluezone-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.08) 0%, transparent 70%);
}
.bluezone-inner {
  position: relative;
  z-index: 1;
}
.bluezone-header { text-align: center; margin-bottom: 4rem; }
.bluezone-header h2 { color: var(--white); }
.bluezone-header p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 1rem auto 0; }
.bluezone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.bz-stat {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.bz-stat:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--teal);
}
.bz-stat .bz-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.bz-stat .bz-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.bz-stat .bz-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.bluezone-cta { text-align: center; }

/* ============================================
   PRE-ENROLLMENT CTA BANNER
   ============================================ */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #E8293E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-banner .btn-subtext {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.8rem;
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  background: var(--gray-light);
  overflow: hidden;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
  transition: var(--transition);
  cursor: default;
}
.gallery-placeholder:hover { transform: scale(1.02); }
.gallery-placeholder .gp-icon { font-size: 2.5rem; }
.gallery-placeholder .gp-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
  padding: 0 1rem;
}
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand .footer-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
  line-height: 1.75;
}
.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--teal); }
.footer-contact p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal); }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--teal);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================
   CHATBOT WIDGET (placeholder)
   ============================================ */
.chatbot-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(42,157,143,0.4);
  cursor: pointer;
  transition: var(--transition);
  color: white;
}
.chatbot-fab:hover {
  transform: scale(1.1);
  background: var(--teal-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .teams-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hook-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hook-inner { grid-template-columns: 1fr; }
  .hook-visual { display: none; }
  .events-inner { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: 1fr 1fr; }
  .bluezone-stats { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .teams-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
.nav-logo-v4 img { height: 140px; width: auto; object-fit: contain; display: block; }
