/* Custom styles for Chosen Lounge */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
    background: #c5dfbf;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #99c792;
}

/* Selection color */
::selection {
    background: #c5dfbf;
    color: #1a3819;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #448c42;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav, .mobile-menu, #menuOverlay {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* Large desktop */
@media (min-width: 1280px) {
    .feature-card:hover {
        transform: translateY(-12px);
    }
}
