/* ===== Elevé Academy of Dance — Dark Luxury Aesthetic ===== */

/* --- CSS Variables --- */
:root {
    /* Core colours */
    --background: #0a0a0a;
    --background-card: #121212;
    --foreground: #ebe4d5;
    --gold: #e0a91f;
    --gold-light: #f0cd75;
    --gold-dark: #986f14;
    --gold-muted: #7a6d55;
    --muted: #1f1f1f;
    --muted-fg: #a39a8a;
    --border: #3d3628;
    --border-subtle: rgba(212, 169, 31, 0.15);
    --border-gold: rgba(224, 169, 31, 0.3);
    --border-gold-strong: rgba(224, 169, 31, 0.5);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', system-ui, sans-serif;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #e0a91f, #f0cd75, #e0a91f);
    --gradient-dark: linear-gradient(180deg, #0a0a0a, #141414);
    --gradient-card: linear-gradient(145deg, #1a1a1a, #0d0d0d);

    /* Shadows */
    --shadow-gold: 0 4px 30px rgba(224, 169, 31, 0.15);
    --shadow-gold-lg: 0 8px 50px rgba(224, 169, 31, 0.25);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--foreground);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Utility Classes --- */
.gold-border {
    border: 1px solid var(--border-gold);
}

.gold-border-glow {
    border: 1px solid var(--border-gold-strong);
    box-shadow: 0 0 20px rgba(224, 169, 31, 0.1), inset 0 0 20px rgba(224, 169, 31, 0.05);
}

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

.text-muted {
    color: var(--muted-fg);
}

.bg-dark {
    background-color: var(--background);
}

.bg-card {
    background-color: var(--background-card);
}

/* --- Section Header Pattern --- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 3rem;
    height: 1px;
    background: var(--border-gold-strong);
}

.section-label span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--foreground);
}

.section-header p {
    color: var(--muted-fg);
    font-size: 1rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* --- Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 54, 40, 0.5);
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s var(--ease);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(224, 169, 31, 0.3));
    background: transparent;
    mix-blend-mode: screen;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.1;
    background: linear-gradient(90deg, #e0a91f, #f0cd75, #e0a91f, #f0cd75, #e0a91f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.logo-text .brand-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(235, 228, 213, 0.8);
    padding: 0.5rem 0.55rem;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-gold {
    background: var(--gradient-gold);
    background-size: 200% auto;
    color: var(--background);
    border: none;
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold-lg);
    transform: scale(1.02);
    color: var(--background);
}

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

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--background);
}

.btn-elegant {
    background: transparent;
    color: var(--foreground);
    border: 1px solid rgba(224, 169, 31, 0.4);
    letter-spacing: 0.025em;
}

.btn-elegant:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 0.875rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay-lr {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.6), transparent);
}

.hero-bg .overlay-bt {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--background), transparent 50%, rgba(10, 10, 10, 0.5));
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 2rem 0;
    max-width: 42rem;
}

.hero-accent-line {
    width: 4rem;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--ease) both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero h1 .shimmer-text {
    background: linear-gradient(90deg, #e0a91f, #f0cd75, #e0a91f, #f0cd75, #e0a91f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    display: block;
}

.hero h1 .hero-line {
    display: block;
}

.hero h1 .hero-line-dim {
    display: block;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.8;
    max-width: 36rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* --- Section Padding --- */
.section-padding {
    padding: 5rem 0;
}

/* --- Welcome / About Section --- */
.welcome-section {
    position: relative;
    overflow: hidden;
}

.welcome-section .orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(224, 169, 31, 0.05);
    filter: blur(60px);
    pointer-events: none;
}

.welcome-section .orb-1 {
    width: 16rem;
    height: 16rem;
    top: -4rem;
    left: -4rem;
}

.welcome-section .orb-2 {
    width: 24rem;
    height: 24rem;
    bottom: -6rem;
    right: -6rem;
}

.welcome-text {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.welcome-text p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted-fg);
    margin-bottom: 1.5rem;
}

.welcome-text strong {
    color: var(--foreground);
    font-weight: 500;
}

.quote-box {
    max-width: 28rem;
    margin: 3rem auto 0;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-gold-strong);
    box-shadow: 0 0 20px rgba(224, 169, 31, 0.1), inset 0 0 20px rgba(224, 169, 31, 0.05);
    animation: borderGlow 4s ease-in-out infinite;
}

.quote-box blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.4;
}

/* --- Dance Style Cards --- */
.dance-styles-section {
    position: relative;
}

.dance-styles-section .radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(224, 169, 31, 0.08), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.dance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dance-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    aspect-ratio: 3 / 4;
    display: block;
    transition: all 0.5s var(--ease);
}

.dance-card:hover {
    border-color: rgba(224, 169, 31, 0.6);
}

.dance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.dance-card:hover img {
    transform: scale(1.1);
}

.dance-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), rgba(10, 10, 10, 0.5) 50%, transparent);
    opacity: 0.8;
    transition: opacity 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.dance-card:hover .dance-card-overlay {
    opacity: 0.9;
}

.dance-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--foreground);
    transition: color 0.3s var(--ease);
}

.dance-card:hover h3 {
    color: var(--gold);
}

.dance-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted-fg);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.dance-card .card-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: 1rem;
    transition: width 0.5s var(--ease);
}

.dance-card:hover .card-line {
    width: 100%;
}

/* --- Why Choose Section --- */
.why-choose-section {
    position: relative;
}

.corner-decor {
    position: absolute;
    width: 6rem;
    height: 6rem;
    pointer-events: none;
}

.corner-decor-tl {
    top: 3rem;
    left: 3rem;
    border-left: 2px solid rgba(224, 169, 31, 0.3);
    border-top: 2px solid rgba(224, 169, 31, 0.3);
}

.corner-decor-br {
    bottom: 3rem;
    right: 3rem;
    border-right: 2px solid rgba(224, 169, 31, 0.3);
    border-bottom: 2px solid rgba(224, 169, 31, 0.3);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-gold);
    background: rgba(18, 18, 18, 0.5);
    transition: all 0.3s var(--ease);
}

.why-choose-item:hover {
    background: var(--background-card);
}

.why-choose-item .icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 50%;
    background: rgba(224, 169, 31, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s var(--ease);
}

.why-choose-item:hover .icon-circle {
    background: rgba(224, 169, 31, 0.2);
}

.why-choose-item .icon-circle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    stroke: var(--gold);
}

.why-choose-item span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--foreground);
}

/* --- Stats Row --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 56rem;
    margin: 5rem auto 0;
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-fg);
}

/* --- News / Events Cards --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    padding: 2rem;
    border: 1px solid var(--border-gold);
    background: var(--background);
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--border-gold-strong);
    box-shadow: 0 0 20px rgba(224, 169, 31, 0.1), inset 0 0 20px rgba(224, 169, 31, 0.05);
}

.news-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(224, 169, 31, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.news-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--gold);
}

.news-card-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.news-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.7;
    flex: 1;
}

.news-card .card-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: 1.5rem;
    transition: width 0.5s var(--ease);
}

.news-card:hover .card-line {
    width: 100%;
}

/* News card with image variant (for news.php listing) */
.news-card-img {
    background: var(--background-card);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.news-card-img:hover {
    border-color: var(--border-gold-strong);
    box-shadow: var(--shadow-gold);
}

.news-card-image {
    height: 240px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.news-card-img:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-content {
    padding: 1.75rem 2rem 2rem;
}

.news-card-date {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.news-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.news-card-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.7;
}

/* --- Instagram / Follow Section --- */
.instagram-section {
    position: relative;
    overflow: hidden;
}

.instagram-section .glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    height: 20rem;
    background: rgba(224, 169, 31, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--border-gold);
    background: var(--background-card);
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-gold-strong);
    box-shadow: 0 0 20px rgba(224, 169, 31, 0.1), inset 0 0 20px rgba(224, 169, 31, 0.05);
}

.testimonial-quote {
    margin-bottom: 1.25rem;
    line-height: 1;
}

.testimonial-quote svg {
    opacity: 0.4;
    fill: var(--gold);
}

.testimonial-text {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted-fg);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
}

/* --- Page Header --- */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--background);
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 1px;
    background: var(--gold);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--muted-fg);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* --- Content Pages (Story, Principal, Charity) --- */
.content-section {
    max-width: 780px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: var(--foreground);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted-fg);
    margin-bottom: 1.5rem;
}

.content-section strong {
    color: var(--foreground);
    font-weight: 500;
}

/* --- Highlight Box --- */
.highlight-box {
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid var(--border-gold-strong);
    box-shadow: 0 0 20px rgba(224, 169, 31, 0.1), inset 0 0 20px rgba(224, 169, 31, 0.05);
    background: var(--background-card);
}

.highlight-box h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.highlight-box p {
    color: var(--muted-fg);
    font-weight: 300;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.highlight-box li {
    color: var(--muted-fg);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.highlight-box li strong {
    color: var(--foreground);
    font-weight: 500;
}

/* --- Quote Block --- */
.quote-block {
    padding: 3rem;
    margin: 2rem 0;
    border-left: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.02);
}

.quote-block p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-block p:last-of-type {
    margin-bottom: 0;
}

.quote-author {
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* --- Principal Layout --- */
.principal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.principal-photos {
    position: sticky;
    top: 6rem;
}

.principal-image img {
    width: 100%;
    border: 1px solid var(--border-gold);
}

.principal-info p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted-fg);
    margin-bottom: 1.25rem;
}

/* --- Cards (generic, used in various pages) --- */
.card {
    padding: 2rem;
    border: 1px solid var(--border-gold);
    background: var(--background-card);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.card:hover {
    border-color: var(--border-gold-strong);
    box-shadow: var(--shadow-gold);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.card-icon svg {
    stroke: var(--gold);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Contact Page --- */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block svg {
    stroke: var(--gold);
    margin-bottom: 0.75rem;
}

.contact-block h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-block a,
.contact-block p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--foreground);
}

/* --- Charity Section --- */
.charity-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.charity-icon {
    margin-bottom: 2rem;
}

.charity-icon svg {
    stroke: var(--gold);
}

.charity-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.charity-content p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted-fg);
    margin-bottom: 1.5rem;
}

/* --- CTA Sections (parallax replacement) --- */
.cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background: var(--background-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.cta-section .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30rem;
    height: 20rem;
    background: radial-gradient(ellipse, rgba(224, 169, 31, 0.06), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted-fg);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-section .btn {
    position: relative;
}

/* --- Empty State --- */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state svg {
    color: var(--gold);
    stroke: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--muted-fg);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* --- Footer --- */
.footer {
    background: var(--background-card);
    border-top: 1px solid rgba(61, 54, 40, 0.5);
}

.footer-inner {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(224, 169, 31, 0.3));
    background: transparent;
    mix-blend-mode: screen;
}

.footer-section h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
    transition: color 0.3s var(--ease);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-connect-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
}

.footer-connect-item svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--gold);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-fg);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.footer-social a svg {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(61, 54, 40, 0.5);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--muted-fg);
}

/* --- Admin Styles --- */
.admin-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-gold);
}

.admin-header h1 {
    font-size: 1.75rem;
}

.admin-table {
    width: 100%;
    border: 1px solid var(--border-gold);
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(61, 54, 40, 0.3);
}

.admin-table th {
    background: var(--background);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.admin-table tr:hover {
    background: rgba(224, 169, 31, 0.05);
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit {
    background: transparent;
    color: #5ba3e0;
    border: 1px solid #5ba3e0;
}

.btn-edit:hover {
    background: #5ba3e0;
    color: var(--background);
}

.btn-delete {
    background: transparent;
    color: #e05b5b;
    border: 1px solid #e05b5b;
}

.btn-delete:hover {
    background: #e05b5b;
    color: var(--background);
}

/* --- Login --- */
.login-container {
    max-width: 420px;
    margin: 6rem auto;
    padding: 3rem;
    background: var(--background-card);
    border: 1px solid var(--border-gold);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-container .subtitle {
    text-align: center;
    color: var(--muted-fg);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--muted);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(224, 169, 31, 0.15);
}

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

/* --- Alerts --- */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(224, 91, 91, 0.1);
    border-color: #e05b5b;
    color: #e05b5b;
}

.alert-success {
    background: rgba(91, 224, 91, 0.1);
    border-color: #5be05b;
    color: #5be05b;
}

/* --- Location / Map Section --- */
.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border-gold);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.4) contrast(1.1);
}

/* --- Opening Times --- */
.opening-times {
    max-width: 500px;
    margin: 0 auto;
}

.opening-times-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.opening-times-row:last-child {
    border-bottom: none;
}

.opening-times-row .day {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--foreground);
}

.opening-times-row .time {
    font-weight: 300;
    color: var(--muted-fg);
}

.opening-times-row .time.closed {
    color: var(--gold-muted);
    font-style: italic;
}

/* --- Success / Achievement Cards --- */
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.success-card {
    padding: 2.5rem;
    border: 1px solid var(--border-gold);
    background: var(--background-card);
    transition: all 0.5s var(--ease);
}

.success-card:hover {
    border-color: var(--border-gold-strong);
    box-shadow: 0 0 20px rgba(224, 169, 31, 0.1), inset 0 0 20px rgba(224, 169, 31, 0.05);
}

.success-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.success-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.8;
}

/* --- Board / Directors List --- */
.directors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.director-item {
    text-align: center;
    padding: 1.25rem 1rem;
    border: 1px solid var(--border-gold);
    background: rgba(18, 18, 18, 0.5);
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--foreground);
    transition: all 0.3s var(--ease);
    width: calc(25% - 0.75rem);
}

.director-item:hover {
    border-color: var(--border-gold-strong);
    background: var(--background-card);
}

/* --- Events List --- */
.events-list {
    max-width: 700px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: baseline;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold);
    white-space: nowrap;
    min-width: 160px;
}

.event-name {
    font-weight: 400;
    color: var(--foreground);
}

/* --- Sponsors --- */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-gold);
    color: var(--foreground);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
    opacity: 1 !important;
    visibility: visible !important;
}

.sponsor-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* --- Gallery --- */
.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    cursor: pointer;
    transition: all 0.5s var(--ease);
}

.gallery-item:hover {
    border-color: var(--border-gold-strong);
    box-shadow: var(--shadow-gold);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, var(--background), transparent);
    font-size: 0.85rem;
    color: var(--foreground);
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid var(--border-gold);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 2rem;
    cursor: pointer;
    z-index: 101;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
}

/* --- Shop Page --- */
.shop-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.shop-hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--muted-fg);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* --- Animations --- */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(224, 169, 31, 0.3); }
    50% { border-color: rgba(224, 169, 31, 0.8); }
}

/* Scroll animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.scroll-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.scroll-fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Responsive: Tablet --- */
@media (min-width: 768px) {
    .section-padding {
        padding: 7rem 0;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .stat-item .stat-number {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .hero h1 {
        font-size: 5rem;
    }
}

/* --- Responsive: Mobile --- */
@media (max-width: 1024px) {
    .dance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principal-grid {
        grid-template-columns: 1fr;
    }

    .principal-photos {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.15rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 55;
        overflow-y: auto;
        padding: 5rem 0 2rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 6rem 1.5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .dance-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .corner-decor {
        display: none;
    }

    .success-grid {
        grid-template-columns: 1fr;
    }

    .directors-grid {
        justify-content: center;
    }

    .director-item {
        width: calc(50% - 0.5rem);
    }

    .event-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .event-date {
        min-width: auto;
    }

    .gallery-grid {
        columns: 2;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }

    .gallery-grid {
        columns: 1;
    }
}

/* --- Hide Elfsight free plan branding link --- */
/* Targets only the branding credit link/text, NOT the widget container */
a.eapps-link,
.eapps-instagram-feed .eapps-link,
a[href*="elfsight.com/instagram-feed-widget"],
a[href*="elfsight.com/free-instagram-feed-widget"],
div.eapps-widget-toolbar,
.eapps-instagram-feed-posts-grid-load-more + a,
[class*="eapps"][class*="link"]:not([class*="post"]):not([class*="item"]):not([class*="grid"]):not([class*="container"]):not([class*="feed"]) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
    opacity: 0 !important;
}
