/* Primer Coffee & Cocktails — Custom Styles */
/* This file provides additional custom styling on top of the inline styles in index.html */

/* Smooth focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #C4725A;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(196, 114, 90, 0.2);
    color: #2C2825;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #C4725A;
}

/* Menu tab transitions */
.menu-tab {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Experience card hover glow */
.experience-card:hover {
    border-color: rgba(196, 114, 90, 0.25);
}

/* Button press effect */
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Image loading placeholder */
img {
    background: linear-gradient(135deg, #F2E8D9 0%, #E6D5BC 100%);
}

/* Reduced motion support */
@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;
    }
    
    .hero-scroll {
        animation: none;
    }
}

/* Print styles */
@media print {
    .nav,
    .hero-scroll,
    .mobile-toggle,
    .mobile-menu {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 4rem 2rem;
    }
    
    .hero-bg,
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: #2C2825;
    }
    
    .hero h1,
    .hero p {
        color: #2C2825;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
}
