@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;700&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

/* Master Design Tokens */
:root {
    --deep-ink: #000000;
    --prestige-gold: #D4AF37;
    --antique-gold: #C5A028;
    --parchment: #F4F1EA;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --card-bg: rgba(255, 255, 255, 0.02);
    --border-gold: rgba(212, 175, 55, 0.2);
    --glow-gold: rgba(212, 175, 55, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--deep-ink);
    color: var(--parchment);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 8, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-logo {
    height: 40px;
}

.nav-links a {
    color: var(--parchment);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--prestige-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, var(--deep-ink) 70%),
        url('../images/hero-bg.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.main-lotus {
    max-width: 500px;
    width: 90%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px var(--glow-gold));
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Cinzel Decorative', cursive;
    color: var(--parchment);
    text-transform: uppercase;
    max-width: 1000px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .tagline {
    font-size: 1.2rem;
    color: rgba(244, 241, 234, 0.7);
    max-width: 600px;
    margin-bottom: 3rem;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

.cta-btn {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--prestige-gold);
    color: var(--prestige-gold);
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.4s;
}

.cta-btn:hover {
    background: var(--prestige-gold);
    color: var(--deep-ink);
    box-shadow: 0 0 20px var(--glow-gold);
}

/* Grid Section */
.grid-container {
    max-width: 1200px;
    margin: -50px auto 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.card {
    background: rgba(10, 15, 20, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--prestige-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-gold);
    opacity: 0.8;
}

.card-content {
    padding: 30px;
}

.card h3 {
    color: var(--prestige-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card p {
    font-size: 0.95rem;
    color: rgba(244, 241, 234, 0.6);
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.card-btn {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--parchment);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.card-btn:hover {
    border-color: var(--prestige-gold);
    background: var(--prestige-gold);
    color: var(--deep-ink);
}

/* Legal Container (Overrides) */
.legal-container {
    max-width: 900px;
    margin: 150px auto 50px;
    padding: 60px;
    background: var(--parchment);
    color: var(--deep-ink);
}

.legal-container h1,
.legal-container h2 {
    color: var(--deep-ink);
}

.legal-container .header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.legal-container .logo-container {
    margin-bottom: 20px;
}

.legal-container .logo-container img {
    max-width: 150px;
    height: auto;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
        transform: scale(1.02);
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }
}