:root {
    --burgundy-50: #fdf2f4;
    --burgundy-100: #fce7eb;
    --burgundy-200: #f9d0d9;
    --burgundy-300: #f4a8b8;
    --burgundy-400: #ec7491;
    --burgundy-500: #e04d72;
    --burgundy-600: #c92a54;
    --burgundy-700: #a81e43;
    --burgundy-800: #8c1a38;
    --burgundy-900: #751830;
    
    --blush-50: #fff5f7;
    --blush-100: #ffe8ec;
    --blush-200: #ffd0d9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #e04d72;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c92a54;
}

/* Mobile menu animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.active {
    max-height: 300px;
}

/* Button hover effects */
button, a {
    transition: all 0.3s ease;
}

/* Form focus states */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(224, 77, 114, 0.1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-5xl {
        font-size: 2rem;
    }
    
    .text-4xl {
        font-size: 1.75rem;
    }
}
