@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold: #c9a24d;
    --gold-soft: rgba(201,162,77,0.25);
    --navy: #0b1324;
    --dark: #070b16;
    --glass: rgba(255,255,255,0.05);
    --white: #ffffff;
}

/* ===============================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0e1b3d, #060912);
    color: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
}

/* ===============================
   HEADER LAYOUT FIXED
================================ */
.site-header {
    width: 100%;
    background: rgba(0,0,0,0.05); /* subtle overlay for header */
    padding: 25px 8%;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}


/* ===============================
   APPLY BUTTON UNDER HEADER
================================ */
.apply-container {
    text-align: center;
    margin-top: 20px;
}

.btn-apply {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-decoration: none;
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(201,162,77,0.1), rgba(201,162,77,0.05));
    transition: all 0.4s ease;
    animation: btnGlow 3s infinite alternate;
}

.btn-apply:hover {
    color: #111;
    background: linear-gradient(135deg, #e4c87f, #b9963a);
    box-shadow: 0 10px 35px rgba(201,162,77,0.3);
    transform: translateY(-2px);
}

/* Subtle glowing animation for luxury feel */
@keyframes btnGlow {
    0% {
        box-shadow: 0 0 0px rgba(201,162,77,0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(201,162,77,0.3);
    }
    100% {
        box-shadow: 0 0 0px rgba(201,162,77,0.2);
    }
}
/* Logo */
.academy-logo img {
    height: 200px;
    width: auto;
    display: block;
}

/* Academy Name - bold, thick, elite */
.academy-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900; /* super thick bold */
    color: var(--gold);
    letter-spacing: 1px;
}

/* Static Nav Below Header */
.nav-links-static {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 18px;
    padding-bottom: 15px;
}

.nav-links-static a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-links-static a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(201,162,77,0.08);
}

/* Apply Button */
.nav-links-static .nav-apply {
    background: linear-gradient(135deg, #e4c87f, #b9963a);
    color: #111;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px rgba(201,162,77,0.3);
    transition: all 0.3s ease;
}

.nav-links-static .nav-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(201,162,77,0.35);
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    height: 100vh;
    background: url('../assets/images/hero.jpg') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,9,18,0.85), rgba(6,9,18,0.97));
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 25px;
}

/* HERO TEXT ANIMATION */
.hero-overlay h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    animation: fadeSlideUp 1.6s ease forwards;
}

.hero-overlay p {
    max-width: 760px;
    margin: 25px 0 45px;
    font-size: 1.15rem;
    opacity: 0.9;
    animation: fadeSlideUp 2.1s ease forwards;
}

/* ===============================
   BUTTONS
================================ */
.btn {
    padding: 15px 42px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-gold {
    background: linear-gradient(135deg, #e4c87f, #b9963a);
    color: #111;
    box-shadow: 0 20px 50px rgba(201,162,77,0.4);
}

.btn-gold:hover {
    transform: translateY(-4px);
}

/* ===============================
   PROGRAM CARDS
================================ */
.programs-preview {
    padding: 130px 8%;
    background: var(--dark);
    text-align: center;
}

.program-cards {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
}

.card {
    background: linear-gradient(180deg, #0f1d3d, #090f1f);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201,162,77,0.25);
    transition: all 0.6s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.card:hover {
    transform: translateY(-14px) scale(1.02);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card h3 {
    margin: 25px 25px 10px;
    font-size: 1.5rem;
}

.card p {
    margin: 0 25px 35px;
    opacity: 0.85;
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonials {
    padding: 130px 8%;
    background: radial-gradient(circle at top, #111f45, #060912);
    text-align: center;
    overflow: hidden;
}

/* Individual testimonial card */
.testimonial {
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(201,162,77,0.3);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    animation: testimonialReveal 1.6s ease forwards,
               testimonialFloat 7s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover – very soft */
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.45);
}

/* Text inside */
.testimonial p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.92;
}

.testimonial span {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* ===============================
   ANIMATIONS
================================ */

/* Initial entrance */
@keyframes testimonialReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slow floating (luxury feel) */
@keyframes testimonialFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===============================
   FOOTER
================================ */
.site-footer {
    margin-top: 140px;
    padding: 90px 8% 40px;
    background: linear-gradient(to top, #050812, #070c1a);
    border-top: 1px solid rgba(201,162,77,0.3);
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.85;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--gold);
    border-color: var(--gold);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .nav-links-static {
        flex-direction: column;
        gap: 12px;
    }

    .program-cards {
        grid-template-columns: 1fr;
        gap: 35px;
    }
} 