/* Custom Styles for Magnolias On Main */

:root {
    --burgundy: #722F37;
    --burgundy-light: #8B3A42;
    --rose: #E8A0BF;
    --rose-light: #F4C2D5;
    --blush: #FFE4E1;
}

/* Custom Font Families */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-quicksand {
    font-family: 'Quicksand', sans-serif;
}

/* Custom Color Classes */
.text-burgundy {
    color: var(--burgundy);
}

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

.bg-burgundy\/20 {
    background-color: rgba(114, 47, 55, 0.2);
}

.text-rose-500 {
    color: #F43F5E;
}

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

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

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

/* Staggered animation delays */
.scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.scroll-reveal:nth-child(2) { transition-delay: 100ms; }
.scroll-reveal:nth-child(3) { transition-delay: 200ms; }
.scroll-reveal:nth-child(4) { transition-delay: 300ms; }

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(114, 47, 55, 0.1);
}

/* Image Hover Effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

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

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

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

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

/* Focus Styles */
input:focus,
textarea:focus {
    outline: none;
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-playfair {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    #hero h1 {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }
}

/* Print Styles */
@media print {
    nav,
    #contact,
    .animate-bounce {
        display: none;
    }
}
