:root {
    --burgundy: #7B2D3B;
    --burgundy-light: #9A3D4D;
    --blush: #F4E4E1;
    --blush-light: #FAF5F4;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

/* Custom color classes */
.bg-burgundy {
    background-color: var(--burgundy);
}

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

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

.bg-blush\/20 {
    background-color: rgba(244, 228, 225, 0.2);
}

.bg-blush\/30 {
    background-color: rgba(244, 228, 225, 0.3);
}

.text-blush {
    color: var(--blush);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Hide scrollbar for cleaner look */
::-webkit-scrollbar {
    width: 10px;
}

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
