@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfbf7;
    color: #1f2937;
    overflow-x: hidden;
}

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

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fdfbf7;
}
::-webkit-scrollbar-thumb {
    background: #0f4c3a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a065;
}

/* Selection Color */
::selection {
    background: #0f4c3a;
    color: #ffffff;
}

/* Utilities */
.text-brand-green { color: #0f4c3a; }
.bg-brand-green { background-color: #0f4c3a; }
.text-brand-gold { color: #c5a065; }
.bg-brand-gold { background-color: #c5a065; }
.bg-brand-cream { background-color: #fdfbf7; }

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
}
.animate-marquee:hover {
    animation-play-state: paused;
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Custom Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #c5a065;
    transition: all 0.3s ease;
    z-index: -1;
}
.btn-primary:hover::after {
    height: 100%;
}
.btn-primary:hover {
    color: #0f4c3a;
    border-color: #c5a065;
}

/* Navigation Links */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #c5a065;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
