/* ============================================================
   BULKY BOWL - Premium Gym Food Delivery Website
   Color Theme: Deep Forest Dark + Vibrant Green + Golden Amber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  /* ── Color Palette ── */
  --bg-primary:      #050d05;        /* Deep forest black */
  --bg-secondary:    #0d1a0d;        /* Dark forest green */
  --bg-card:         rgba(15, 30, 15, 0.75);
  --bg-card2:        rgba(20, 40, 10, 0.6);

  --green-primary:   #39d353;        /* Vibrant lime green */
  --green-dark:      #1a9e30;
  --green-glow:      rgba(57, 211, 83, 0.25);
  --green-soft:      rgba(57, 211, 83, 0.12);

  --gold:            #f5a623;        /* Golden amber (brand logo match) */
  --gold-light:      #ffd166;
  --gold-glow:       rgba(245, 166, 35, 0.25);

  --red-accent:      #ff4757;        /* Non-veg indicator */
  --white:           #f0fff0;
  --text-primary:    #e8f5e9;
  --text-secondary:  #7dab7e;
  --text-muted:      #4a6b4a;
  --border-color:    rgba(57, 211, 83, 0.15);
  --border-gold:     rgba(245, 166, 35, 0.2);

  /* ── Typography ── */
  --font-main:       'Outfit', sans-serif;
  --font-display:    'Bebas Neue', sans-serif;

  /* ── Spacing & Shape ── */
  --radius-xl:  24px;
  --radius-lg:  16px;
  --radius-md:  12px;
  --radius-sm:  8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Shadows ── */
  --shadow-green:  0 8px 32px rgba(57, 211, 83, 0.2);
  --shadow-gold:   0 8px 32px rgba(245, 166, 35, 0.2);
  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.5);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Background animated grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,211,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,211,83,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* ── Glass Card ── */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(5, 13, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 0 40px rgba(57, 211, 83, 0.08);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--green-primary); }

.header-right { display: flex; align-items: center; gap: 1.5rem; }

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.menu-toggle:hover { color: var(--green-primary); }

.nav-menu ul { display: flex; list-style: none; gap: 2rem; }
.nav-menu ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after { width: 100%; }
.nav-menu ul li a:hover,
.nav-menu ul li a.active { color: var(--green-primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 5% 80px;
  overflow: hidden;
  z-index: 1;
}

/* Radial glow layers */
.hero::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(57,211,83,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57,211,83,0.12);
  border: 1px solid var(--border-color);
  color: var(--green-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 .line1 {
  display: block;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hero h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--green-primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.3rem; }
.stat-divider {
  width: 1px;
  background: var(--border-color);
  align-self: stretch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #000;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(57,211,83,0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.w-btn { font-family: var(--font-main); font-size: 1rem; cursor: pointer; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--green-primary); }

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  background: var(--green-soft);
  border: 1px solid var(--border-color);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PHOTO SHOWCASE (5 USER PHOTOS)
   ============================================================ */
.showcase-section {
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.showcase-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-header { text-align: center; margin-bottom: 3rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout: big left + grid right */
.photo-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.05); }

.photo-item .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,5,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.photo-overlay-text small { display: block; color: var(--green-primary); font-size: 0.8rem; }

/* Grid layout for 5 photos */
.photo-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; min-height: 400px; }
.photo-item:nth-child(2) { grid-column: 6 / 10; grid-row: 1; min-height: 400px; }
.photo-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1; min-height: 400px; }
.photo-item:nth-child(4) { grid-column: 1 / 7; grid-row: 2; min-height: 340px; }
.photo-item:nth-child(5) { grid-column: 7 / 13; grid-row: 2; min-height: 340px; }

/* Gold border glow on featured */
.photo-item:nth-child(1),
.photo-item:nth-child(4) {
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 4px 24px rgba(245,166,35,0.1);
}
.photo-item:nth-child(2),
.photo-item:nth-child(5) {
  border: 1.5px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(57,211,83,0.08);
}
.photo-item:nth-child(3) {
  border: 1.5px solid var(--border-gold);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  border-radius: var(--radius-xl);
  padding: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-green);
  border-color: rgba(57,211,83,0.35);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }

.food-type {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(5, 13, 5, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border-color);
}
.type-veg::before, .type-nonveg::before {
  content: '';
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
}
.type-veg::before   { background: var(--green-primary); }
.type-nonveg::before { background: var(--red-accent); }

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}

.macro-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.macro-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  background: var(--green-soft);
  color: var(--green-primary);
  border: 1px solid var(--border-color);
}
.macro-tag.kcal {
  background: rgba(245,166,35,0.1);
  color: var(--gold);
  border-color: var(--border-gold);
}

.product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 1.2rem;
  margin-top: auto;
}
.product-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57,211,83,0.3);
  box-shadow: var(--shadow-green);
}

.feature-icon {
  width: 64px; height: 64px;
  background: var(--green-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--green-primary);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--green-primary);
  color: #000;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   GYM CTA BANNER
   ============================================================ */
.gym-banner {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  overflow: hidden;
}
.gym-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(10,25,10,0.95) 0%, rgba(20,45,10,0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gym-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.gym-banner-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,166,35,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.gym-banner-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.gym-banner-text h2 span { color: var(--gold); }
.gym-banner-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.gym-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2rem;
}
.gym-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.gym-checklist li i { color: var(--green-primary); font-size: 0.85rem; }

.gym-banner-contact {
  text-align: center;
  flex-shrink: 0;
}
.contact-phone {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.contact-phone:hover { color: var(--green-primary); }
.contact-phone i { color: var(--green-primary); }
.contact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  margin-top: auto;
  padding: 4rem 5% 1.5rem;
  border-top: 1px solid var(--border-color);
  background: rgba(5,10,5,0.95);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 280px;
  margin-top: 0.8rem;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  background: var(--green-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover {
  background: var(--green-primary);
  color: #000;
  border-color: var(--green-primary);
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--green-primary); padding-left: 4px; }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-bottom span { color: var(--green-primary); }

/* ============================================================
   CONTENT / INNER PAGES
   ============================================================ */
.page-header {
  padding: 9rem 5% 4rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(57,211,83,0.06), transparent);
  position: relative;
  z-index: 1;
}
.page-header h1 { font-size: 3rem; font-weight: 800; }

.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 5% 5rem;
  position: relative;
  z-index: 1;
}
.page-content h2 {
  margin: 2.5rem 0 1rem;
  color: var(--green-primary);
  font-size: 1.5rem;
}
.page-content p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.8; }
.page-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-secondary); }
.page-content li { margin-bottom: 0.5rem; }

/* ============================================================
   PARTNER BTN (hidden by default – accessed via direct link)
   ============================================================ */
.partner-btn {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  background: rgba(57,211,83,0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.partner-btn:hover { background: var(--green-primary); color: #000; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ============================================================
   LOGOUT BTN (admin)
   ============================================================ */
.logout-btn-wrapper {
  position: absolute;
  top: 100px; right: 5%;
  z-index: 10;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .photo-item:nth-child(1) { grid-column: 1 / 7; }
  .photo-item:nth-child(2) { grid-column: 7 / 13; }
  .photo-item:nth-child(3) { grid-column: 1 / 5; grid-row: 2; min-height: 280px; }
  .photo-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2; min-height: 280px; }
  .photo-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; min-height: 280px; }

  .gym-banner-inner { grid-template-columns: 1fr; }
  .gym-banner-contact { text-align: left; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  header { flex-direction: row; flex-wrap: wrap; padding: 1rem 5%; }
  .menu-toggle { display: block; }
  .nav-menu {
    display: none;
    width: 100%;
    margin-top: 1rem;
    background: rgba(5,13,5,0.97);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
  }
  .nav-menu.active { display: block; }
  .nav-menu ul { flex-direction: column; gap: 1.5rem; }
  .nav-menu ul li a::after { display: none; }

  .hero { min-height: auto; padding: 120px 5% 60px; }
  .hero h1 { font-size: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }

  /* Photo grid stacked on mobile */
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-item { min-height: 200px !important; }
  .photo-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .photo-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .photo-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .photo-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .photo-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }

  .gym-banner-inner { padding: 2.5rem 1.5rem; }
  .gym-checklist { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  .page-header { padding: 11rem 5% 3rem; }
  .logout-btn-wrapper { position: relative; top: auto; right: auto; margin-bottom: 2rem; display: flex; justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-item:nth-child(n) { grid-column: 1 / 2; grid-row: auto; min-height: 220px !important; }
}
