@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-main: #f0f0f0;
  --bg-panel: #ffffff;
  --text-dark: #141414;
  --text-body: #111010;
  --text-muted: #5a5a5a;
  --accent: #000803;
  --accent-hover: #181818;
  --accent-secondary: #070707;
  --accent-gold: #f4da87;
  --border: rgba(20, 20, 20, 0.08);
  --shadow-sm: 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 24px 65px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* NAVBAR */
nav {
  width: 100%;
  padding: 14px clamp(1.25rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

/* Navigation Bar */
nav {
  background: #f6f2f2;
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(82, 81, 81, 0.3);
}

/* Menu Links */
nav ul li a {
  position: relative;
  text-decoration: none;
  font-weight: 700; /* Bold */
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #494747;
  transition: color 0.3s ease;
}

/* Hover and Active State */
nav ul li a:hover,
nav ul li a.active {
  color: var(--accent);
}
/* HERO (home page) */
.hero {
  min-height: min(92vh, 820px);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(5rem, 12vh, 7rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vh, 4rem);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.3) 0%, rgba(20, 20, 20, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  width: 100%;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 7vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
}

.hero-select {
  min-width: 200px;
  padding: 0.9rem 2.5rem 0.9rem 1.125rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  cursor: pointer;
  outline: none;
}

.hero-select option {
  color: #111;
  background: #fff;
}

.hero-btn {
  padding: 0.9rem 1.75rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 18px 42px rgba(13, 13, 13, 0.45);
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: clamp(5rem, 12vw, 7rem) clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero p {
  max-width: 48rem;
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.85;
}

/* SECTIONS */
section {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent);
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.card-list {
  list-style: none;
  text-align: left;
}

.card-list li {
  margin-bottom: 0.5rem;
  font-size: 0.975rem;
  color: var(--text-body);
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.75;
}

.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ABOUT */
.about-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-logo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.about-text h3 {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  text-align: left;
  width: 100%;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-main);
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.975rem;
  color: var(--text-body);
}

.feature-item span {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

/* INNER PAGE CONTENT */
main {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

/* SENSEI PAGE */
.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

.sensei-header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sensei-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.sensei-meta h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.sensei-meta .role {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sensei-meta .tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.image-frame img {
  width: 100%;
  height: clamp(220px, 40vw, 420px);
  object-fit: cover;
}

.image-frame .sensei-main-photo {
  object-fit: contain;
  background: #fafafa;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
}

.detail-item {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.125rem;
}

.detail-item strong {
  display: block;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.team-section {
  margin-top: 3rem;
}

.team-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.coach-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.coach-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.coach-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent);
}

.coach-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.coach-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ACHIEVEMENTS GRID */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 1rem;
}

.achievements-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.achievements-grid a:hover {
  transform: scale(1.03);
}

.achievements-grid img {
  width: 100%;
  aspect-ratio: 2/2;
  object-fit: cover;
  display: block;
} 
/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 1rem;
}

.gallery-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.03);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 2/2;
  object-fit: cover;
  display: block;
} 
/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.contact-details {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.contact-item {
  background: var(--bg-main);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 1rem 1.125rem;
}

.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--accent-hover);
}

.social-section {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafafa;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.submit-btn {
  align-self: flex-start;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.35);
  transition: background 0.25s ease;
}

.submit-btn:hover {
  background: var(--accent-hover);
}

/* TRAINING PAGE */
.training-intro {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.training-intro h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.training-intro p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.program-card h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent);
}

.program-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.img-container {
  margin-top: auto;
  background: var(--bg-main);
  border-radius: 12px;
  padding: 0.75rem;
}

.program-card img {
  width: 100%;
  border-radius: 8px;
}

.outdoor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.outdoor-grid img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.indoor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap:1rem ;
  margin-top: 1.5rem;
}

.indoor-grid img {
  width: 100%;
  aspect-ratio: 6/6;
  object-fit: cover;
  border-radius: 8px;
  border:1px solid var(--border)
}

.indoor-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}


.thank-you-section {
    text-align: center;
    padding: 40px 20px;
    background: #f2ebe2;
    margin-top: 40px;
}

.thank-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.thank-logo {
    width: 40px;
    height: 40px;
    object-fit: contaain;
    border-radius: 50%;
    border: 2px solid gold;
}

.thank-row h2 {
    font-size: 32px;
    margin: 0;
    color: #111;
}

.join-text {
    font-size: 22px;
    font-weight: bold;
    color: #b8860b;
    letter-spacing: 1px;
}

/* ===== GALLERY LAYOUT ===== */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* ===== PERFECT IMAGE SIZE (NO HALF CUT) ===== */
.gallery a img {
    width: 300px;        /* control width */
    height: auto;        /* IMPORTANT: prevents cutting */
    max-height: 300px;   /* keeps uniform limit */
    object-fit: contain; /* shows full image */
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    background: white;   /* optional clean background */
}

/* Hover effect */
.gallery a img:hover {
    transform: scale(1.05);
}




/* RESPONSIVE */
@media (max-width: 900px) {
  .section-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    width: 100%;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav ul {
    gap: 0.5rem 1rem;
  }

  nav ul li a {
    font-size: 0.65rem;
  }
}
