/* Custom Color Palette */
:root {
    --burgundy-dark: #722F37;
    --burgundy-light: #9B4D56;
    --blush: #F5E6E8;
    --stone-50: #FAFAFA;
    --stone-100: #F5F5F5;
    --stone-200: #EEEEEE;
    --stone-500: #999999;
    --stone-600: #666666;
    --stone-900: #1A1A1A;
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--stone-900);
    background-color: var(--stone-50);
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-body {
    font-family: 'Montserrat', sans-serif;
}

/* Burgundy Colors */
.text-burgundy-dark {
    color: var(--burgundy-dark);
}

.text-burgundy-light {
    color: var(--burgundy-light);
}

.bg-burgundy-dark {
    background-color: var(--burgundy-dark);
}

.bg-burgundy-light {
    background-color: var(--burgundy-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Animations */
.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Floating Cards */
.floating-card-1 {
    animation: float 4s ease-in-out infinite;
}

.floating-card-2 {
    animation: float 4s ease-in-out 1s infinite;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--stone-100);
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-dark);
}

/* Mobile Menu Transitions */
.mobile-link {
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--burgundy-light);
}

/* Button Hover Effects */
button, a {
    transition: all 0.3s ease;
}

/* Input Focus Styles */
input:focus, select:focus, textarea:focus {
    border-bottom-color: var(--burgundy-dark) !important;
}

/* Image Hover Effects */
.overflow-hidden {
    position: relative;
}

.overflow-hidden img {
    transition: transform 0.5s ease;
}

.overflow-hidden:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
    
    .floating-card-1,
    .floating-card-2 {
        display: none;
    }
}
