/* Custom CSS for Osprey Café */

/* Color Variables */
:root {
    --plum-50: #faf5f7;
    --plum-100: #f5eef2;
    --plum-200: #eadde6;
    --plum-300: #d8becf;
    --plum-400: #c196b0;
    --plum-500: #a87494;
    --plum-600: #8f5c79;
    --plum-700: #784c64;
    --plum-800: #654054;
    --plum-900: #553748;
    --plum-950: #2e1d2c;
    
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
}

/* Custom Font Settings */
.font-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-sans {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-scrolled .nav-link {
    color: #553748 !important;
}

.nav-scrolled .logo-text {
    color: #553748 !important;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #8f5c79;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(85, 55, 72, 0.15);
}

/* Image Overlay */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(85, 55, 72, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover::after {
    opacity: 1;
}

/* Button Styles */
.btn-primary {
    @apply inline-flex items-center justify-center px-8 py-4 bg-plum-800 text-white rounded-sm hover:bg-plum-700 transition-all duration-200 text-sm uppercase tracking-wider font-medium;
}

.btn-secondary {
    @apply inline-flex items-center justify-center px-8 py-4 border-2 border-plum-800 text-plum-800 rounded-sm hover:bg-plum-800 hover:text-white transition-all duration-200 text-sm uppercase tracking-wider font-medium;
}

/* Section Spacing */
section {
    position: relative;
}

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

#mobile-menu.open {
    max-height: 400px;
}

/* Focus Styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 116, 148, 0.2);
}

/* Responsive Typography */
@media (max-width: 640px) {
    .font-serif {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
}

/* Print Styles */
@media print {
    nav,
    #contact,
    footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
