/* Custom Styles for Shelley Hansen Real Estate Website */

:root {
    --burgundy: #722F37;
    --burgundy-light: #8B3A42;
    --rose: #F4C2C2;
    --rose-light: #FFE4E1;
    --blush: #FFE4E1;
    --stone-50: #FAFAF9;
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

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

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

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

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

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

/* Custom Rose Colors */
.text-rose-100 {
    color: var(--rose-light);
}

.text-rose-200 {
    color: #FADADD;
}

.bg-rose-50 {
    background-color: #FFF5F5;
}

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

.border-rose-100 {
    border-color: var(--rose-light);
}

/* Navbar Scroll Effect */
#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-blur-md;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 1.875rem;
    }
    
    h1 {
        font-size: 2.25rem !important;
    }
    
    h2 {
        font-size: 1.875rem !important;
    }
}

/* Hover Effects */
.group:hover .group-hover\:text-burgundy {
    color: var(--burgundy);
}

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

/* Focus Styles */
input:focus,
textarea:focus {
    border-color: var(--burgundy) !important;
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

/* Button Hover Transform */
button:hover,
a:hover {
    transform: translateY(-2px);
}

button:active,
a:active {
    transform: translateY(0);
}
