@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&family=Cinzel:wght@400..900&display=swap');

:root {
    --primary: #d4af37;
    /* Metallic Gold */
    --secondary: #8e44ad;
    /* Royal Purple */
    --accent: #e67e22;
    /* Saffron/Sunset Orange */
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-white: #f8f9fa;
    --text-gold: #f1c40f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* Background Elements */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 80%);
    z-index: -1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span.vani {
    display: inline-block;
}

.vani-text {
    background: linear-gradient(90deg, #ffd700, #ff4d00, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vani-boost 3s linear infinite;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

@keyframes vani-boost {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }

    50% {
        background-position: 100% 50%;
        filter: hue-rotate(30deg);
        scale: 1.05;
    }

    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.4), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero h1 .vani-text {
    font-size: 6rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: black;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: #f1c40f;
}

/* Sections General */
section {
    padding: 100px 10%;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

/* Skills/Languages Section */
.languages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.lang-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    width: 280px;
    text-align: center;
    transition: 0.5s;
    backdrop-filter: blur(10px);
}

.lang-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.lang-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.lang-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Academy Grid */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.academy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.academy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
}

.academy-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.academy-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.course-image-container {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.course-image {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
}

.academy-card:hover .course-image {
    transform: scale(1.05);
}

.academy-card:hover .course-image-container {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.academy-card ul {
    list-style: none;
}

.academy-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.academy-card ul li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1f 100%);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy h3 {
    color: var(--text-gold);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.philosophy p.quote {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    padding: 4rem 10%;
    background: #050505;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-socials a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h1 .vani-text {
        font-size: 3.5rem;
    }

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

    nav ul {
        display: none;
    }
}