/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --color-forest: #1a4d2e;
    --color-cream: #fbf8f1;
    --color-gold: #c5a059;
    /* More antique/champagne gold */
    --color-gold-bright: #d4af37;
}

body {
    background-color: var(--color-cream);
    color: #333;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom Utilities */
.text-forest {
    color: var(--color-forest);
}

.bg-forest {
    background-color: var(--color-forest);
}

.text-gold {
    color: var(--color-gold);
}

.text-gold-bright {
    color: var(--color-gold-bright);
}

.bg-gold {
    background-color: var(--color-gold);
}

.border-gold {
    border-color: var(--color-gold);
}

.bg-cream {
    background-color: var(--color-cream);
}

/* Premium Gold Gradient Text - Refined */
.gold-gradient-text {
    background: linear-gradient(135deg, #c5a059 0%, #f3e5ab 50%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Shadow */
.premium-shadow {
    box-shadow: 0 15px 35px -5px rgba(26, 77, 46, 0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Transitions */
section {
    position: relative;
    z-index: 10;
}

/* Logo Effects */
.logo-effect {
    transition: all 0.3s ease;
}

.logo-effect:hover {
    transform: scale(1.05);
}