:root {
  --bg: #090104;
  --panel: #18030a;
  --accent: #010000;
  --accent-2: #d61f46;
  --text: #ffffff;
  --muted: #f1d3da;
  --border: rgba(118, 2, 27, 0.25);
  --shadow: 0 18px 40px rgba(20, 0, 5, 0.65);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(120, 9, 31, 0.9), rgba(18, 1, 7, 0.95) 45%, #050003 100%),
    #090104;
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}


header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(10, 1, 5, 0.88);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-right: auto;
  justify-self: flex-start;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(207, 47, 79, 0.2);
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand span { color: var(--accent-2); }

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover { color: var(--text); }

.hero {
  padding: 88px 0 64px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-image-panel {
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #16050c;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  min-height: 84vh;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  background: #0a0207;
}

.cover-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(1.1);
}

.cover-layout {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 56px 5vw;
}

.cover-text {
  max-width: 620px;
}

.cover-text h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.cover-text p {
  margin: 0;
  color: #ffd7df;
  font-size: 1.02rem;
}

.logo-section {
  padding-top: 10px;
}

.logo-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.logo-badge {
  min-height: 160px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 0, 58, 0.08);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-align: center;
  padding: 20px;
}

.logo-placeholder {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(173, 15, 46, 0.18), rgba(255, 0, 58, 0.04));
  border: 1px dashed rgba(207, 47, 79, 0.7);
  color: #ffd7df;
  text-align: center;
  padding: 18px;
  font-weight: 700;
}

.logo-note {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 0, 58, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  color: #ffd7df;
  background: rgba(173, 15, 46, 0.2);
  border: 1px solid rgba(207, 47, 79, 0.55);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

h1 span { color: var(--accent-2); }

.hero p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 1.04rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #9d0d2a, #e13759);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.btn:hover { transform: translateY(-2px); }

.hero-blank {
  min-height: 290px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 0, 58, 0.08);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-2);
}

.about-story {
  padding-top: 24px;
  padding-bottom: 24px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(173, 15, 46, 0.18), rgba(255, 0, 58, 0.04));
  box-shadow: var(--shadow);
}

.about-copy,
.about-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 34px 38px;
  box-shadow: none;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 18px;
}

.about-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  text-align: left;
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
  text-align: left;
}

.about-copy .eyebrow {
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.stat-pill {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 47, 79, 0.55);
}

.stat-pill strong {
  display: block;
  font-size: 1.25rem;
  color: var(--accent-2);
}

.stat-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-visual {
  min-height: 100%;
  overflow: hidden;
  background: #12030a;
}

.about-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-badge {
  display: grid;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.about-badge strong {
  color: var(--text);
  font-size: 1.5rem;
}

.about-badge span {
  color: var(--muted);
}

.hero-cover {
  padding-top: 0;
}

section {
  padding: 38px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 24px 22px 26px;
  min-height: 280px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(207, 47, 79, 0.55);
  color: var(--accent-2);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

/* Trainer profiles */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.trainer-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.trainer-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #16050c;
  border-bottom: 1px solid var(--border);
}

.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.trainer-card:hover .trainer-photo img {
  transform: scale(1.05);
}

.trainer-info {
  padding: 22px 22px 26px;
}

.trainer-info h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.trainer-role {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.trainer-info p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.trainer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.2s ease;
}

.trainer-ig:hover {
  border-color: rgba(207, 47, 79, 0.9);
  transform: translateY(-2px);
}

.ig-icon {
  color: var(--accent-2);
  font-size: 1rem;
}

.trainer-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.trainer-card:hover .trainer-view {
  gap: 10px;
}

/* Trainer detail page */
.trainer-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(173, 15, 46, 0.18), rgba(255, 0, 58, 0.04));
  box-shadow: var(--shadow);
  margin-top: 10px;
}

.trainer-detail-photo {
  min-height: 100%;
  overflow: hidden;
  background: #12030a;
}

.trainer-detail-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.trainer-detail-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trainer-detail-info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 6px;
}

.trainer-detail-info .trainer-role {
  font-size: 1rem;
  margin-bottom: 18px;
}

.trainer-detail-info p {
  color: var(--muted);
  margin: 0 0 16px;
}

.trainer-detail-list {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.trainer-detail-list li {
  margin-bottom: 6px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 22px;
}

.back-link:hover {
  color: var(--text);
}

.plans-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.zumba-side-card {
  background: rgba(255, 0, 58, 0.055);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zumba-side-card h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.zumba-side-card p,
.zumba-side-card li {
  color: var(--muted);
}

.zumba-side-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.card {
  background: rgba(255, 0, 58, 0.055);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 47, 79, 0.9);
  box-shadow: 0 22px 50px rgba(60, 0, 10, 0.55);
}

.feature-card {
  padding: 28px 24px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(207, 47, 79, 0.18);
  color: var(--accent-2);
  font-size: 1.1rem;
  margin-bottom: 14px;
  border: 1px solid rgba(207, 47, 79, 0.6);
}

.card h3 {
  margin-top: 0;
  font-size: 1.18rem;
  color: var(--text);
}

.card p,
.plan-card p,
.plan-card li {
  color: var(--muted);
}

.plan-card ul {
  padding-left: 18px;
}

.plan-card.highlight {
  border-color: rgba(207, 47, 79, 0.78);
  background: linear-gradient(180deg, rgba(173, 15, 46, 0.22), rgba(255,255,255,0.04));
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 10px 0 0;
}

.contact {
  text-align: center;
  padding-bottom: 80px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 22px 0 36px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .hero,
  .feature-grid,
  .plans-layout,
  .plan-grid,
  .about-stats,
  .logo-strip,
  .about-story-grid,
  .trainer-grid {
    grid-template-columns: 1fr;
  }

  .cover-banner,
  .cover-layout {
    min-height: 60vh;
  }

  .cover-layout {
    padding: 28px 20px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    display: none;
  }
}

body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M1 8h3v8H1V8zm4 2h2v4H5v-4zm3-2h2v8H8V8zm3 3h2v2h-2v-2zm3-3h2v8h-2V8zm4 2h2v4h-2v-4zm3-2h3v8h-3V8z'/%3E%3C/svg%3E") 16 16, auto;
}

a, button, .btn {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M1 8h3v8H1V8zm4 2h2v4H5v-4zm3-2h2v8H8V8zm3 3h2v2h-2v-2zm3-3h2v8h-2V8zm4 2h2v4h-2v-4zm3-2h3v8h-3V8z'/%3E%3C/svg%3E") 16 16, pointer;
}

.hero-cover {
  width: 100%;
  padding: 0;
}

.cover-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height if you want it taller or shorter */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.cover-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cover-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(15, 5, 5, 0.9) 0%, transparent 100%);
}

/* Base desktop style for trainer detail layout */
.trainer-detail {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.trainer-detail-photo {
  flex: 1;
}

.trainer-detail-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.trainer-detail-info {
  flex: 1;
}

/* Responsive fix: Stack vertically on screens smaller than 768px (Mobile & Tablets) */
@media (max-width: 768px) {
  .trainer-detail {
    flex-direction: column;
    gap: 24px;
  }
  
  .trainer-detail-photo,
  .trainer-detail-info {
    width: 100%;
  }
}

/* Desktop default */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* Mobile responsive menu fix */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0;
    margin: 0;
  }

  .nav-links a {
    font-size: 0.95rem;
  }
}


.notice-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeIn 0.4s ease-out;
}

.notice-card {
  background: #141414;
  border: 1px solid rgba(229, 9, 20, 0.4);
  padding: 35px 30px;
  border-radius: 12px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.25);
}

.notice-badge {
  display: inline-block;
  background: #e50914;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.notice-card h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.notice-card p {
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.notice-card button {
  width: 100%;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}