/* Custom styles for The Deluxe Inn */

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

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

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #454545;
    border-radius: 5px;
}

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

/* Selection color */
::selection {
    background: #f97583;
    color: #ffffff;
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mobile-menu.show {
    animation: slideDown 0.3s ease-out;
}

/* Subtle glow effect for coral elements */
.text-coral-500 {
    text-shadow: 0 0 20px rgba(249, 117, 131, 0.3);
}

/* Hover effects for cards */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Focus styles for accessibility */
input:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 117, 131, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
}

/* Print styles */
@media print {
    nav,
    button,
    form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .bg-charcoal-950,
    .bg-charcoal-900 {
        background: white !important;
        color: black !important;
    }
}
