/* Custom styles for The Flight Grille */

/* Smooth scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background: #C05838;
    color: #E3C49C;
}

/* Date input styling for dark theme */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(-10deg);
    cursor: pointer;
}

/* Subtle glow effect for cards */
.glass-card:hover {
    border-color: rgba(192, 88, 56, 0.3);
    box-shadow: 0 20px 60px rgba(192, 88, 56, 0.1);
}

/* Navbar scroll state */
nav.scrolled {
    background: rgba(8, 9, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Print styles */
@media print {
    .glass-card, nav, #mobile-menu {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
