/* ============================================================
   BUDO7 — PREMIUM DARK DOJO THEME
   Full German Edition with Real Photos
   ============================================================ */

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

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --gold:         #C9952A;
    --gold-light:   #F0C060;
    --gold-dark:    #8B6914;
    --crimson:      #9B1B2A;
    --crimson-light:#C02535;
    --bg-darkest:   #080A0C;
    --bg-dark:      #0E1117;
    --bg-card:      #141820;
    --bg-card2:     #1A1F2E;
    --border:       rgba(201,149,42,0.18);
    --border-light: rgba(201,149,42,0.35);
    --text-primary: #F0EDE8;
    --text-muted:   #9E9A94;
    --text-accent:  var(--gold-light);
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    24px;
    --shadow-glow:  0 0 40px rgba(201,149,42,0.15);
    --shadow-card:  0 8px 40px rgba(0,0,0,0.45);
    --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main:    'Outfit', sans-serif;
    --font-jp:      'Noto Serif JP', serif;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-main);
    background: var(--bg-darkest);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

.gold { color: var(--gold); }

/* ── Section Common ──────────────────────────────────────── */
section { padding: 7rem 5vw; }

.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    background: rgba(201,149,42,0.12);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,149,42,0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,149,42,0.55);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(240,220,180,0.4);
}
.btn-secondary:hover {
    background: rgba(201,149,42,0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
#main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5vw;
    transition: var(--transition);
}

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

.logo-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201,149,42,0.4));
    flex-shrink: 0;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.logo-accent { color: var(--gold); }
.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Footer logo image */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(201,149,42,0.35));
}

.nav-menu {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.nav-link {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.nav-link:hover { color: var(--gold-light); background: rgba(201,149,42,0.08); }

.nav-controls { display: flex; align-items: center; gap: 1rem; }

.nav-cta-btn {
    padding: 0.5rem 1.4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,149,42,0.45);
}

/* Scrolled state */
#main-header.scrolled {
    background: rgba(8,10,12,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 5vw 3rem;
}

/* Slideshow background */
.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8,10,12,0.92) 0%,
        rgba(8,10,12,0.78) 55%,
        rgba(8,10,12,0.55) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.hero-content-col {
    position: relative;
    z-index: 3;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    background: rgba(201,149,42,0.15);
    border: 1px solid var(--gold);
    border-radius: 100px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.7s ease both;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease 0.15s both;
}
.hero-title-accent { color: var(--gold); }

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(240,237,232,0.85);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease 0.25s both;
}

/* Glassmorphic Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease 0.35s both;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1rem 0.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 149, 42, 0.4);
    box-shadow: 0 8px 24px rgba(201, 149, 42, 0.08);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.45s both;
}

.btn-watch-video {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.play-icon {
    font-size: 0.8rem;
    color: var(--gold-light);
    transition: transform 0.3s ease;
}

.btn-watch-video:hover .play-icon {
    transform: scale(1.2);
}

/* Immersive Visual Column */
.hero-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-interactive-composition {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    width: 100%;
    animation: fadeIn 1s ease 0.3s both;
}

.composition-main-frame {
    position: relative;
    width: 320px;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(201, 149, 42, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(201, 149, 42, 0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    z-index: 2;
}

.composition-main-frame:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(201, 149, 42, 0.25);
}

.composition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.composition-main-frame:hover .composition-img {
    transform: scale(1.04);
}

.frame-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 12, 0.85) 0%, rgba(8, 10, 12, 0) 50%);
    z-index: 1;
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(14, 17, 23, 0.82);
    border: 1px solid rgba(201, 149, 42, 0.28);
    border-radius: var(--radius-md);
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-badge:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.badge-top-right {
    top: 8%;
    right: 5%;
    animation: floatAnimation 4.5s ease-in-out infinite;
}

.badge-bottom-left {
    bottom: 8%;
    left: 5%;
    animation: floatAnimation 4.5s ease-in-out infinite alternate;
}

.badge-emoji {
    font-size: 1.3rem;
}

.badge-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
}

.badge-text-group strong {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 700;
}

.badge-text-group span {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-top: 1px;
}

/* Visual Kanji Backdrop */
.visual-kanji-bg {
    position: absolute;
    font-family: var(--font-jp);
    font-size: 16rem;
    color: rgba(201, 149, 42, 0.02);
    font-weight: 700;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 90%;
    max-width: 860px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(201, 149, 42, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    overflow: hidden;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(8, 10, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: rotate(90deg);
}

.video-modal-content {
    width: 100%;
    height: 100%;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 8, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s both;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: bounce 1.5s ease infinite;
}

/* ── ARTS SECTION ─────────────────────────────────────────── */
.arts-section { background: var(--bg-dark); }

.arts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.art-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.art-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.art-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.art-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.art-card:hover .art-img-wrap img { transform: scale(1.07); }

.art-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.art-kanji {
    font-family: var(--font-jp);
    font-size: 2.8rem;
    color: rgba(201,149,42,0.15);
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
    line-height: 1;
    user-select: none;
}

.art-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.art-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.2rem;
}

.art-link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    align-self: flex-start;
}
.art-link:hover { color: var(--gold-light); letter-spacing: 0.08em; }

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section {
    background: var(--bg-darkest);
    padding: 7rem 5vw;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* Portrait Frame */
.about-visual { position: relative; }

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.about-img-frame img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(8,10,12,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.2rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--gold-light);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.3;
}

.about-img-decoration {
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -30px;
    left: -30px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    opacity: 0.25;
    z-index: -1;
}

/* Content side */
.about-content { padding: 1rem 0; }

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.about-sub {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.about-p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    transition: var(--transition);
}
.about-badge:hover {
    border-color: var(--gold);
    background: var(--bg-card2);
}

.badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.badge-text strong { font-size: 1.05rem; color: var(--gold-light); font-weight: 800; }
.badge-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ── HALL / FACILITIES ────────────────────────────────────── */
.hall-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
}

.hall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hall-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.hall-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
}

.hall-img-box {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.hall-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hall-card:hover .hall-img-box img { transform: scale(1.06); }

.hall-img-overlay {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.hall-info { padding: 1.6rem; }
.hall-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.hall-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── SCHEDULE ─────────────────────────────────────────────── */
.schedule-section { background: var(--bg-darkest); }

.sched-tabs {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #000;
}

.sched-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.sched-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.sched-table thead tr {
    background: linear-gradient(135deg, #161A24, #1E2336);
}
.sched-table th {
    padding: 1rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-align: left;
    border-bottom: 2px solid var(--border-light);
    white-space: nowrap;
}

.sched-table td {
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(201,149,42,0.07);
    vertical-align: middle;
}
.sched-table tbody tr:hover { background: rgba(201,149,42,0.04); }

.sched-cell-time {
    font-weight: 700;
    color: var(--text-primary) !important;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.class-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(201,149,42,0.1);
    color: var(--gold-light);
    border: 1px solid rgba(201,149,42,0.2);
    white-space: nowrap;
}
.class-badge.highlight {
    background: rgba(155,27,42,0.2);
    color: #E8899A;
    border-color: rgba(155,27,42,0.4);
}
.class-empty { color: rgba(158,154,148,0.3); font-size: 0.9rem; }

.sched-note {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    background: rgba(201,149,42,0.07);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-section {
    background: var(--bg-dark);
    padding: 7rem 5vw;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,10,12,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
}
.gallery-overlay span {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    backdrop-filter: blur(8px);
}
.lightbox-backdrop.active { display: block; }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2001;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: rgba(240,220,160,0.15);
    border: 1px solid rgba(240,220,160,0.3);
    color: var(--gold-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(240,220,160,0.3); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240,220,160,0.12);
    border: 1px solid rgba(240,220,160,0.25);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}
.lightbox-nav:hover { background: rgba(240,220,160,0.25); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

.lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    background: rgba(8,10,12,0.8);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
    background: var(--bg-darkest);
    padding: 7rem 5vw;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--gold);
    line-height: 0.7;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.testimonial-author div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.testimonial-author strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-success-msg {
    background: rgba(40,180,80,0.12);
    border: 1px solid rgba(40,180,80,0.35);
    color: #6FE89A;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}
.form-input {
    width: 100%;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-input:focus {
    border-color: var(--gold);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}
.form-input::placeholder { color: rgba(158,154,148,0.5); }

textarea.form-input {
    min-height: 140px;
    resize: vertical;
}

/* Contact Info */
.contact-info-column { display: flex; flex-direction: column; gap: 1.5rem; }

.info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.info-item:hover { border-color: var(--border-light); }

.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-text-title { font-size: 0.8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.info-text-value { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.info-text-value a { color: var(--text-muted); transition: var(--transition); }
.info-text-value a:hover { color: var(--gold-light); }

.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ── FOOTER ───────────────────────────────────────────────── */
#main-footer {
    background: #050608;
    border-top: 1px solid var(--border);
    padding: 4rem 5vw 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-social { display: flex; gap: 0.8rem; }
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: lowercase;
    transition: var(--transition);
}
.social-btn:hover {
    background: rgba(201,149,42,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-nav-col h4,
.footer-contact-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-nav-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-col p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}
.footer-contact-col a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-col a:hover { color: var(--gold-light); }

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(158,154,148,0.5);
    letter-spacing: 0.06em;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(6px); }
}

/* Scroll-reveal elements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-grid { gap: 3rem; }
    .composition-main-frame { width: 280px; height: 390px; }
    .floating-badge { padding: 0.55rem 0.95rem; }
    .about-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-frame img { height: 420px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    section { padding: 5rem 5vw; }
    .hero { padding: 6rem 5vw 4rem; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-content-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-stats { width: 100%; max-width: 600px; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .hero-buttons { justify-content: center; }
    .hero-interactive-composition { height: 420px; margin-top: 1rem; }
    .composition-main-frame { width: 260px; height: 360px; }
    .floating-badge { padding: 0.5rem 0.9rem; }
    .badge-top-right { right: 10%; }
    .badge-bottom-left { left: 10%; }
    .arts-grid { grid-template-columns: repeat(2, 1fr); }
    .hall-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
    .about-badges { grid-template-columns: 1fr; }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(8,10,12,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-link {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .hamburger { display: flex; }
    .nav-cta-btn { display: none; }
}

@media (max-width: 540px) {
    .arts-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .stat-num { font-size: 1.6rem; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .floating-badge { padding: 0.45rem 0.8rem; }
    .badge-text-group strong { font-size: 0.75rem; }
    .badge-text-group span { font-size: 0.62rem; }
    .badge-top-right { right: 2%; }
    .badge-bottom-left { left: 2%; }
}

/* ── INTERACTIVE BELT PROGRESSION (GÜRTELSYSTEM) ──────────── */
.belts-section {
    padding: 7rem 5vw;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.belts-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.belt-discipline-tabs {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.belt-disc-btn {
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    transform-origin: center;
}

.belt-disc-btn:hover {
    background: rgba(201, 149, 42, 0.06) !important;
    border-color: rgba(201, 149, 42, 0.4) !important;
    color: var(--gold-light) !important;
    transform: translateY(-1px);
}

.belt-disc-btn.active {
    background: rgba(201, 149, 42, 0.15) !important;
    border-color: var(--gold) !important;
    color: var(--gold-light) !important;
    box-shadow: 0 0 15px rgba(201, 149, 42, 0.12);
}

.belt-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}

.belt-btn {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    cursor: pointer;
    transition: var(--transition);
    transform-origin: center;
}

.belt-btn:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(201, 149, 42, 0.3) !important;
    transform: translateY(-2px);
}

.belt-btn.active {
    background: rgba(201, 149, 42, 0.08) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(201, 149, 42, 0.15);
    color: #fff !important;
}

.belt-btn.active .belt-name {
    color: var(--gold-light) !important;
}

.belt-details-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    min-height: 200px;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s ease both;
}

.belt-details-content {
    width: 100%;
    text-align: left;
}

.belt-details-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.belt-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background: #ffffff;
    color: #000000;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.belt-detail-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.belt-detail-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.belt-detail-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}


/* ── AWARDS SHOWCASE ──────────────────────────────────────── */
.about-awards-showcase {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    animation: fadeInUp 0.7s ease 0.5s both;
}

.awards-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.award-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

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

.award-overlay-info {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.award-overlay-info span {
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.award-item:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: var(--gold) !important;
    box-shadow: 0 8px 20px rgba(201, 149, 42, 0.15);
}

.award-item:hover .award-overlay-info {
    opacity: 1 !important;
}

/* ── GOOGLE STYLE TESTIMONIALS ────────────────────────────── */
.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.15s both;
}

.google-logo {
    background: #ea4335;
    color: #fff;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.rating-val {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.review-count {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.testimonial-card.google-style {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    border-color: rgba(201, 149, 42, 0.15);
    transition: var(--transition);
}

.card-header-google {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.card-header-google > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-card-logo {
    background: #4285f4;
    color: #fff;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.card-stars {
    color: #ffd700;
    font-size: 0.95rem;
}

.verified-tag {
    font-size: 0.68rem;
    font-weight: bold;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(201,149,42,0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.testimonial-card.google-style p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-card.google-style:hover {
    border-color: var(--gold) !important;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 149, 42, 0.08) !important;
}

/* ── DYNAMIC ACCORDION FAQ ────────────────────────────────── */
.faq-section {
    background: var(--bg-darkest);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 7rem 5vw 4rem;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.6rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.faq-toggle-icon {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0,0,0,0.12);
}

.faq-answer p {
    padding: 1.5rem 1.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(201,149,42,0.06);
}

.faq-item:hover {
    border-color: rgba(201, 149, 42, 0.35) !important;
}

.faq-question:hover {
    color: var(--gold-light) !important;
}

.faq-item.active {
    border-color: var(--gold) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-question {
    color: var(--gold-light) !important;
    background: rgba(201, 149, 42, 0.04);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--crimson-light);
}


/* Responsive grid for belts on mobile */
@media (max-width: 768px) {
    .belt-selector-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .belt-selector-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── LANGUAGE PICKER (DİL SEÇİCİ) ─────────────────────────── */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.lang-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 149, 42, 0.08);
    color: var(--gold-light);
}

.lang-flag {
    font-size: 1.1rem;
}

.lang-arrow {
    font-size: 0.6rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(8, 10, 12, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
    min-width: 130px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.8rem;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}

.lang-opt:hover {
    background: rgba(201, 149, 42, 0.1);
    color: var(--gold-light);
}

.lang-opt.active {
    color: #fff;
    background: rgba(201, 149, 42, 0.18);
    border: 1px solid rgba(201, 149, 42, 0.3);
}

/* Ensure mobile header matches lang picker spacing */
@media (max-width: 1024px) {
    .nav-controls {
        gap: 0.6rem;
    }
}


/* ── INTERACTIVE BUDO MATCHMAKER QUIZ ─────────────────────── */
.quiz-section {
    background: radial-gradient(circle at 50% 30%, rgba(201, 149, 42, 0.05), transparent 60%), var(--bg-darkest);
    border-bottom: 1px solid rgba(201, 149, 42, 0.08);
}

.quiz-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quiz-screen {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-direction: column;
    height: 100%;
}

.quiz-screen.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.quiz-intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.quiz-intro-icon {
    font-size: 5rem;
    animation: quizPulse 2.5s infinite ease-in-out;
}

@keyframes quizPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(201,149,42,0)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(201,149,42,0.35)); }
}

.quiz-question-box {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.quiz-question-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.35;
}

.quiz-options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option-card {
    display: flex;
    align-items: center;
    padding: 1.15rem 1.6rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.quiz-option-card:hover {
    border-color: var(--gold-light);
    background: rgba(201, 149, 42, 0.06);
    transform: translateX(6px);
}

.quiz-option-card.selected {
    border-color: var(--gold);
    background: rgba(201, 149, 42, 0.15);
    box-shadow: 0 0 20px rgba(201, 149, 42, 0.15);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.quiz-navigation .btn {
    min-width: 120px;
}

.quiz-result-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 1rem 0;
}

.quiz-result-badge {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    background: rgba(201, 149, 42, 0.12);
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 50px;
}

.quiz-result-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quiz-result-kanji {
    font-family: var(--font-jp);
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201, 149, 42, 0.12);
    line-height: 1;
    margin-bottom: -1rem;
}

.quiz-result-discipline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.quiz-result-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}

.quiz-result-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
}

.quiz-result-actions .btn {
    min-width: 180px;
}

@media (max-width: 768px) {
    .quiz-container {
        padding: 2rem 1.5rem;
        min-height: 420px;
    }
    .quiz-question-title {
        font-size: 1.35rem;
    }
    .quiz-result-discipline {
        font-size: 2rem;
    }
    .quiz-result-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .quiz-result-actions .btn {
        width: 100%;
    }
}


/* ── PREMIUM LIGHT THEME TOGGLE BUTTON & OVERRIDES ─────────── */

.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    padding: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 149, 42, 0.08);
    color: var(--gold-light);
    transform: scale(1.05);
}

/* Toggle visibility of sun/moon icons based on active theme */
.theme-icon-sun { display: inline-block; }
.theme-icon-moon { display: none; }

html[data-theme="light"] .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon { display: inline-block; }

/* ── Light Mode Color System ── */
html[data-theme="light"] {
    --bg-darkest:   #F7F5F0; /* Ivory white parchment paper background */
    --bg-dark:      #EFECE5; /* Warm off-white/cream */
    --bg-card:      #FFFFFF; /* Pure solid white cards */
    --bg-card2:     #FBFBFA; /* Warm cream-white input backgrounds */
    --border:       rgba(201,149,42,0.22); /* Gold-tinted border for premium framing */
    --border-light: rgba(201,149,42,0.4);
    --text-primary: #2E2A20; /* Deep charcoal with bronze undertones */
    --text-muted:   #6E6A60; /* Soft dark grey/taupe text */
    --text-accent:  #8B6914; /* Darker warm gold for readability */
    --gold-light:   #8B6914; /* Map light-gold to a darker gold for high contrast text elements */
    --shadow-card:  0 8px 30px rgba(46, 42, 32, 0.06); /* Luxurious soft shadow instead of heavy black shadows */
    --shadow-glow:  0 0 40px rgba(201,149,42,0.05);
}

html[data-theme="light"] body {
    background-color: var(--bg-darkest);
    color: var(--text-primary);
}

/* Header & Mobile Overlay Overrides */
html[data-theme="light"] #main-header.scrolled {
    background: rgba(247, 245, 240, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(46, 42, 32, 0.04);
}

html[data-theme="light"] .nav-logo-img {
    filter: brightness(0) opacity(0.85);
}

html[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
}

html[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(201, 149, 42, 0.06);
    color: var(--text-accent);
}

@media (max-width: 1024px) {
    html[data-theme="light"] .nav-menu {
        background: rgba(247, 245, 240, 0.97);
        border-bottom-color: var(--border);
    }
}

/* Language Picker Overrides */
html[data-theme="light"] .lang-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
}

html[data-theme="light"] .lang-btn:hover {
    background: rgba(201, 149, 42, 0.06);
    color: var(--text-accent);
}

html[data-theme="light"] .lang-dropdown {
    background: #FFFFFF;
    border-color: rgba(201, 149, 42, 0.2);
    box-shadow: 0 10px 30px rgba(46, 42, 32, 0.06);
}

html[data-theme="light"] .lang-opt {
    color: var(--text-muted);
}

html[data-theme="light"] .lang-opt:hover {
    background: rgba(201, 149, 42, 0.06);
    color: var(--text-accent);
}

html[data-theme="light"] .lang-opt.active {
    color: var(--text-primary);
    background: rgba(201, 149, 42, 0.1);
    border-color: rgba(201, 149, 42, 0.25);
}

/* Hero Badge Overrides */
html[data-theme="light"] .hero-badge {
    background: rgba(201, 149, 42, 0.08);
    color: var(--text-accent);
}

/* Schedule Table & Class Badge Overrides */
html[data-theme="light"] .class-badge {
    background: rgba(201, 149, 42, 0.1);
    color: var(--text-accent);
    border-color: rgba(201, 149, 42, 0.25);
}

html[data-theme="light"] .class-badge.highlight {
    background: rgba(155, 27, 42, 0.06);
    color: var(--crimson);
    border-color: rgba(155, 27, 42, 0.2);
}

html[data-theme="light"] .class-empty {
    color: rgba(46, 42, 32, 0.25);
}

html[data-theme="light"] .sched-table thead th {
    color: var(--text-primary);
    border-bottom-color: var(--border);
}

html[data-theme="light"] .sched-table tbody tr {
    border-bottom-color: rgba(201, 149, 42, 0.08);
}

/* Belt selector buttons Overrides */
html[data-theme="light"] .belt-btn {
    background: #FFFFFF !important;
    border-color: rgba(201, 149, 42, 0.15) !important;
    color: var(--text-muted) !important;
}

html[data-theme="light"] .belt-btn:hover {
    background: rgba(201, 149, 42, 0.04) !important;
    border-color: rgba(201, 149, 42, 0.35) !important;
    color: var(--text-primary) !important;
}

html[data-theme="light"] .belt-btn.active {
    background: rgba(201, 149, 42, 0.08) !important;
    border-color: var(--gold) !important;
    color: var(--text-accent) !important;
}

html[data-theme="light"] .belt-disc-btn {
    background: #FFFFFF !important;
    border-color: rgba(201, 149, 42, 0.18) !important;
    color: var(--text-muted) !important;
}

html[data-theme="light"] .belt-disc-btn:hover {
    background: rgba(201, 149, 42, 0.04) !important;
    border-color: rgba(201, 149, 42, 0.4) !important;
    color: var(--text-accent) !important;
}

html[data-theme="light"] .belt-disc-btn.active {
    background: rgba(201, 149, 42, 0.12) !important;
    border-color: var(--gold) !important;
    color: var(--text-accent) !important;
}

/* FAQ Overrides */
html[data-theme="light"] .faq-question {
    color: var(--text-primary);
}

/* Review Stars Summary Overrides */
html[data-theme="light"] .rating-val {
    color: var(--text-primary);
}

/* Interactive Budo Quiz Overrides */
html[data-theme="light"] .quiz-section {
    background: radial-gradient(circle at 50% 30%, rgba(201, 149, 42, 0.04), transparent 60%), #F7F5F0;
}

html[data-theme="light"] .quiz-question-title {
    color: var(--text-primary);
}

html[data-theme="light"] .quiz-result-discipline {
    color: var(--text-primary);
}

html[data-theme="light"] .quiz-result-kanji {
    color: rgba(201, 149, 42, 0.05);
}

html[data-theme="light"] .quiz-progress-bar {
    background: rgba(46, 42, 32, 0.06);
}

html[data-theme="light"] .quiz-option-card {
    background: rgba(46, 42, 32, 0.015);
}

html[data-theme="light"] .quiz-option-card:hover {
    background: rgba(201, 149, 42, 0.04);
    border-color: var(--gold-light);
}

html[data-theme="light"] .quiz-option-card.selected {
    background: rgba(201, 149, 42, 0.08);
    border-color: var(--gold);
}

html[data-theme="light"] .quiz-navigation {
    border-top-color: rgba(46, 42, 32, 0.06);
}

/* Subpages Overrides */
html[data-theme="light"] .sub-hero-overlay {
    background: linear-gradient(to bottom, rgba(247, 245, 240, 0.85) 0%, rgba(247, 245, 240, 0.7) 60%, var(--bg-darkest) 100%);
}

html[data-theme="light"] .detail-card {
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(46, 42, 32, 0.03);
}

html[data-theme="light"] #main-footer {
    background: #EFECE5;
}


/* ── RESPONSIVE MOBILE SCHEDULE CARD GRID ──────────────────── */
@media (max-width: 768px) {
    /* Reset outer container */
    .sched-container {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow-x: visible !important;
    }
    
    .sched-table {
        display: block !important;
        background: transparent !important;
        width: 100% !important;
    }
    
    /* Hide table header globally on mobile */
    .sched-table thead {
        display: none !important;
    }
    
    .sched-table tbody {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    /* Transform row into a card */
    .sched-table tr {
        display: flex !important;
        flex-direction: column !important;
        background: var(--bg-card) !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius-lg) !important;
        padding: 1.25rem !important;
        box-shadow: var(--shadow-card) !important;
        gap: 0.75rem !important;
        transition: var(--transition) !important;
    }
    
    .sched-table tr:hover {
        transform: translateY(-2px);
        border-color: var(--border-light) !important;
    }
    
    /* Style time cell or group cell as a top badge */
    .sched-cell-time {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        color: var(--gold) !important;
        background: rgba(201, 149, 42, 0.08) !important;
        border-radius: var(--radius-sm) !important;
        padding: 0.6rem !important;
        border-bottom: none !important;
        text-align: center !important;
        letter-spacing: 0.05em !important;
        margin-bottom: 0.25rem !important;
    }
    
    html[data-theme="light"] .sched-cell-time {
        background: rgba(201, 149, 42, 0.12) !important;
        color: var(--text-accent) !important;
    }
    
    /* Hide empty training slots completely to prevent space clutter */
    .sched-table td.sched-empty-cell {
        display: none !important;
    }
    
    /* Style subpage Age range cell ('Alter') */
    .sched-table td[data-label="Alter"],
    .sched-table td[data-label="Age"],
    .sched-table td[data-label="Yaş"] {
        display: flex !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
        color: var(--text-muted) !important;
        font-weight: 600 !important;
        background: transparent !important;
        border-bottom: none !important;
        padding: 0.1rem 0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Remove labels on headers */
    .sched-table td.sched-cell-time::before,
    .sched-table td[data-label="Alter"]::before,
    .sched-table td[data-label="Age"]::before,
    .sched-table td[data-label="Yaş"]::before,
    .sched-table td[data-label="Gruppe"]::before,
    .sched-table td[data-label="Group"]::before,
    .sched-table td[data-label="Grup"]::before {
        content: none !important;
    }
    
    /* Turn day cells into row items inside the card */
    .sched-table td:not(.sched-cell-time):not([data-label="Alter"]):not([data-label="Age"]):not([data-label="Yaş"]):not([data-label="Gruppe"]):not([data-label="Group"]):not([data-label="Grup"]) {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.6rem 0.5rem !important;
        border-bottom: 1px solid rgba(201, 149, 42, 0.08) !important;
        background: transparent !important;
    }
    
    .sched-table td:not(.sched-cell-time):not([data-label="Alter"]):not([data-label="Age"]):not([data-label="Yaş"]):not([data-label="Gruppe"]):not([data-label="Group"]):not([data-label="Grup"]):last-child {
        border-bottom: none !important;
    }
    
    /* Show day name label on the left in capital letters */
    .sched-table td:not(.sched-cell-time):not([data-label="Alter"]):not([data-label="Age"]):not([data-label="Yaş"]):not([data-label="Gruppe"]):not([data-label="Group"]):not([data-label="Grup"])::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        color: var(--text-muted) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
    }
    
    /* Center the badge inside the day item */
    .sched-table td .class-badge {
        padding: 0.35rem 0.9rem !important;
        font-size: 0.82rem !important;
    }
}

