/* ==========================================
   SOCCER CAMP 2026 - THE NEW ERA
   Design System + Full Stylesheet
   ========================================== */

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

:root {
  --green: #00C853;
  --green-dark: #00A843;
  --dark: #0A0A0A;
  --surface: #141414;
  --surface-light: #1E1E1E;
  --white: #FFFFFF;
  --gray: #AAAAAA;
  --gray-dark: #666666;
  --gold: #FFD700;
  --gradient-green: linear-gradient(135deg, #00C853, #00A843);
  --gradient-hero: linear-gradient(90deg, #00C853, #FFD700);
  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Noto Sans KR', -apple-system, sans-serif;
  --transition: 0.3s ease;
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--green);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 4px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 6px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  font-size: 18px;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}


/* ---------- SECTION COMMON ---------- */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: var(--white);
}

.section-lead {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.title-accent {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ---------- SECTION 1: ABOUT ---------- */
.about {
  background: var(--dark);
}

.about-text {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.9;
  color: var(--gray);
}

.about-text p {
  margin-bottom: 16px;
}

.about-highlight {
  color: var(--white) !important;
  font-size: 19px !important;
  line-height: 1.8;
}

.text-green {
  color: var(--green);
}

.text-bold {
  font-weight: 900;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 48px auto;
  border-radius: 2px;
}

/* Coach Highlight (이호승 코치) */
.coach-highlight {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}

.coach-highlight-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--green);
  flex-shrink: 0;
}

.coach-highlight-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.coach-highlight-info p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 8px;
}

.coach-highlight-info strong {
  color: var(--white);
}


/* ---------- SECTION 2: COACHES ---------- */
.coaches {
  background: var(--surface);
  text-align: center;
}

.coach-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.coach-card {
  background: var(--surface-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  width: 280px;
  text-align: center;
  transition: all var(--transition);
}

.coach-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 200, 83, 0.15);
}

.coach-image {
  margin-bottom: 20px;
}

.coach-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  margin: 0 auto;
}

.coach-info h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}

.coach-role {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 8px;
}

.coach-career {
  font-size: 14px;
  color: var(--gray);
}


/* ---------- SECTION 3: SCHEDULE ---------- */
.schedule {
  background: var(--dark);
}

.schedule-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.schedule-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  width: 340px;
  border-top: 4px solid var(--green);
  transition: transform var(--transition);
}

.schedule-card:hover {
  transform: translateY(-4px);
}

.schedule-day {
  font-family: var(--font-heading);
  font-size: 40px;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 4px;
}

.schedule-time {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.schedule-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.schedule-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* GK Message Box */
.gk-message {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: var(--green);
  border-radius: var(--radius);
  text-align: center;
}

.gk-message h4 {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.gk-message p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
}

.gk-message strong {
  font-weight: 900;
}


/* ---------- SECTION 4: TRAINING ---------- */
.training {
  background: var(--surface);
  text-align: center;
}


/* ---------- SECTION 5: CTA ---------- */
.cta {
  background: var(--gradient-green);
  text-align: center;
  padding: 120px 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 32px;
}

.cta-copy {
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.cta-punch {
  font-size: 20px !important;
  color: var(--white) !important;
  margin-top: 12px !important;
}

.cta-punch strong {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ---------- SECTION 6: LEAGUE ---------- */
.league {
  background: var(--dark);
  text-align: center;
}


/* ---------- SECTION 7: INSTAGRAM ---------- */
.instagram {
  background: var(--surface);
  text-align: center;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.insta-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  transition: opacity var(--transition), transform var(--transition);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-item:hover {
  opacity: 0.8;
  transform: scale(1.03);
}


/* ---------- FOOTER ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid #2a2a2a;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand img {
  height: 48px;
  margin: 0 auto 12px;
}

.footer-name {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-partners {
  margin-bottom: 32px;
}

.footer-partners-label {
  font-size: 12px;
  color: var(--gray-dark);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-partner-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-partner-logos a {
  font-size: 13px;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-partner-logos a:hover {
  color: var(--green);
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-dark);
}


/* ---------- 카카오톡 플로팅 버튼 ---------- */
.kakao-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #3C1E1E;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
  text-decoration: none;
}

.kakao-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.kakao-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}


/* ---------- SCROLL ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .coach-grid {
    gap: 32px;
  }
  .schedule-card {
    width: 300px;
  }
  /* 아래 추가 */
  .profile-layout {
    grid-template-columns: 300px 1fr;
  }
  .profile-layout.reverse {
    grid-template-columns: 1fr 300px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Header */
  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 24px;
    transition: right var(--transition);
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    font-size: 18px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta .btn {
    width: 220px;
  }

  /* Section */
  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  /* About */
  .about-text {
    font-size: 15px;
    text-align: left;
  }

  .about-highlight {
    font-size: 16px !important;
    text-align: center;
  }

  .coach-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

.coach-highlight-image img {
  width: 120px;
  height: 120px;
}

  /* Coaches */
  .coach-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .coach-card {
    width: 100%;
    max-width: 320px;
  }

  /* Schedule */
  .schedule-grid {
    flex-direction: column;
    align-items: center;
  }

  .schedule-card {
    width: 100%;
    max-width: 360px;
  }

  /* CTA */
  .cta {
    padding: 80px 0;
  }

  .cta-copy p {
    font-size: 15px;
  }

  .cta-punch {
    font-size: 17px !important;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Kakao Float */
  .kakao-float {
    bottom: 20px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .kakao-icon {
    width: 24px;
    height: 24px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .container {
    padding: 0 16px;
  }
}

/* ==========================================
   APPLY PAGE
   ========================================== */

.apply-page {
  padding-top: 72px;
}

/* --- Intro --- */
.apply-intro {
  padding: 60px 0 40px;
  text-align: center;
}

.apply-page-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 4px;
  margin-bottom: 24px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.apply-greeting {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

.apply-greeting p {
  margin-bottom: 8px;
}

.apply-greeting strong {
  color: var(--white);
}

/* --- Info Grid (좌: 안내 / 우: 폼) --- */
.apply-info {
  padding: 0 0 80px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

/* Left: 안내 정보 */
.info-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
}

.info-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
}

/* 신청방법 스텝 */
.info-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-step {
  display: flex;
  gap: 12px;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
  width: 20px;
}

.info-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.info-detail {
  list-style: none;
  margin: 8px 0;
  padding: 0;
}

.info-detail li {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  padding-left: 12px;
  position: relative;
}

.info-detail li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--green);
}

.info-notes {
  background: var(--surface-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 8px;
}

.info-notes p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

.info-notes p:last-child {
  margin-bottom: 0;
}

/* 홈구장 */
.venue-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.venue-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.venue-day {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--green);
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 64px;
  text-align: center;
}

.venue-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.venue-detail {
  font-size: 13px;
  color: var(--gray);
}

.venue-map {
  font-size: 13px;
  color: var(--green);
  transition: opacity var(--transition);
}

.venue-map:hover {
  opacity: 0.7;
}

/* 코치 미니 카드 */
.coach-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coach-mini-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.coach-mini-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  flex-shrink: 0;
}

.coach-mini-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.coach-mini-career {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* --- Right: 신청 폼 --- */
.form-card {
  background: var(--surface);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: sticky;
  top: 90px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--white);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.required {
  color: var(--green);
}

.optional {
  font-size: 12px;
  color: var(--gray-dark);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--dark);
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* 체크박스 */
.form-check {
  margin-bottom: 12px;
}

.check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.check-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

/* 제출 버튼 */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  margin-top: 20px;
}

/* 성공 메시지 */
.success-message {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
}

.success-icon {
  font-size: 48px;
}

.success-message h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.success-message p {
  font-size: 15px;
  color: var(--gray);
}

/* --- 하단 연락처 --- */
.apply-contact {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #2a2a2a;
}

.apply-contact > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
  transition: opacity var(--transition);
}

.contact-phone:hover {
  opacity: 0.7;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}

.contact-links a:hover {
  color: var(--green);
}

.contact-closing {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .apply-intro {
    padding: 40px 0 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-card {
    position: static;
    padding: 28px 20px;
  }

  .info-block {
    padding: 20px;
  }

  .venue-item {
    flex-direction: column;
    gap: 8px;
  }

  .contact-phone {
    font-size: 28px;
  }
}

/* ==========================================
   COACHES PAGE
   ========================================== */

.coaches-page {
  padding-top: 72px;
}

/* --- Hero --- */
.coaches-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.coaches-page-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 4px;
  margin-bottom: 16px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coaches-page-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
}

/* --- Profile Section --- */
.coach-profile {
  padding: 60px 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-layout.reverse {
  grid-template-columns: 1fr 340px;
}

.profile-layout.reverse .profile-photo {
  order: 2;
}

.profile-layout.reverse .profile-content {
  order: 1;
}

/* Photo */
.profile-photo img {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 3px solid var(--green);
  position: sticky;
  top: 100px;
}

/* Badge */
.profile-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--dark);
  background: var(--green);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Name */
.profile-name {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.profile-eng {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gray);
  font-weight: 400;
  margin-left: 8px;
}

/* Tagline */
.profile-tagline {
  font-size: 16px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 28px;
}

/* Stats */
.profile-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  min-width: 80px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--green);
  letter-spacing: 1px;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Bio */
.profile-bio {
  margin-bottom: 32px;
}

.profile-bio p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
}

/* Career Timeline */
.profile-career {
  margin-bottom: 24px;
}

.career-title {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}

.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.career-item {
  display: grid;
  grid-template-columns: 100px 140px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: background var(--transition);
}

.career-item:hover {
  background: var(--surface);
}

.career-item.highlight {
  background: var(--surface);
  border-left: 3px solid var(--green);
}

.career-year {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--green);
}

.career-team {
  font-weight: 700;
  color: var(--white);
}

.career-note {
  color: var(--gray);
  font-size: 13px;
}

/* License */
.profile-license {
  margin-bottom: 24px;
}

.license-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Quote */
.profile-quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: var(--white);
  padding: 24px;
  background: var(--surface);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* Divider */
.coach-divider {
  padding: 0;
}

/* CTA single line */
.cta-copy-single {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .coaches-hero {
    padding: 40px 0 24px;
  }
  .profile-layout,
  .profile-layout.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile-layout.reverse .profile-photo,
  .profile-layout.reverse .profile-content {
    order: unset;
  }
  .profile-photo img {
    max-width: 260px;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0 auto;
    position: static;
  }
  .profile-name {
    font-size: 26px;
  }
  .profile-eng {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .profile-stats {
    gap: 12px;
  }
  .stat-item {
    min-width: 70px;
    padding: 12px 14px;
  }
  .stat-number {
    font-size: 22px;
  }
  .career-item {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 12px;
  }
  .career-note {
    font-size: 12px;
  }
  .coach-profile {
    padding: 40px 0;
  }
}

/* Instagram Embed */
.insta-embed {
  max-width: 720px;
  margin: 0 auto 32px;
}

/* ==========================================
   TRAINING PAGE
   ========================================== */
.training-page {
  padding-top: 72px;
}

/* --- Hero --- */
.training-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.training-page-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 4px;
  margin-bottom: 16px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.training-page-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
}

/* --- Philosophy --- */
.training-philosophy {
  background: var(--surface);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philosophy-card {
  background: var(--surface-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border-top: 3px solid var(--green);
  transition: transform var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-4px);
}

.philosophy-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.philosophy-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* --- Programs --- */
.training-programs {
  background: var(--dark);
}

.program-block {
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 40px;
  overflow: hidden;
}

.program-block:last-child {
  margin-bottom: 0;
}

.program-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid #2a2a2a;
}

.program-day-badge {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--dark);
  background: var(--green);
  padding: 8px 18px;
  border-radius: 6px;
  flex-shrink: 0;
}

.program-day-badge.gk-badge {
  background: var(--gold);
}

.program-day-badge.match-badge {
  background: var(--white);
}

.program-name {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 4px;
}

.program-meta {
  font-size: 14px;
  color: var(--gray);
}

.program-content {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.program-desc h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 20px;
}

/* Curriculum Flow */
.curriculum-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.curriculum-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  width: 28px;
}

.curriculum-step strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}

.curriculum-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

/* Match desc */
.match-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  grid-column: 1 / -1;
}

/* Shorts Videos */
.video-shorts-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shorts-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark);
}

.shorts-item iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 360px;
  display: block;
}

.shorts-caption {
  font-size: 13px;
  color: var(--gray);
  padding: 10px 12px;
  text-align: center;
}

/* --- Full Training Video --- */
.training-full-video {
  background: var(--surface);
}

.full-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.full-video-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-light);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  font-size: 14px;
  color: var(--gray);
  padding: 14px 16px;
  line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .training-hero {
    padding: 40px 0 24px;
  }

  .program-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
  }

  .program-content {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .full-video-grid {
    grid-template-columns: 1fr;
  }

  .shorts-item iframe {
    max-height: 300px;
  }

  .program-name {
    font-size: 22px;
  }
}
