@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --primary: #0a3d1d;
    /* Deep Forest */
    --primary-gradient: linear-gradient(135deg, #0a3d1d 0%, #1b5e20 100%);
    --accent: #d4af37;
    /* Metallic Gold */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --bg-light: #fdfdfa;
    /* Warm Cream */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition-slow: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.luxury-font {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Luxury Layout Utilities */
.section {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Header & Navigation Overhaul */
header {
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

nav {
    background: rgba(10, 61, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: var(--transition-slow);
}

nav a:hover,
nav a.active {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Premium Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-box {
    text-align: center;
    color: var(--text-light);
    padding: 60px;
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.hero-box h1 {
    font-size: 5.5rem;
    margin-bottom: 20px;
}

.hero-box p {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Luxury Buttons */
.btn-gold {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: var(--transition-slow);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-gold:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Card Systems */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.luxury-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 40px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    header h1 {
        font-size: 3rem;
    }

    .hero-box h1 {
        font-size: 3.5rem;
    }

    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
}