/* 
 * Custom Styles for Smugglers Island Pub
 * Complements Tailwind CSS
 */

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #9f1c30; /* Burgundy */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #841626;
}

/* Typography adjustments */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Form Focus States */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(159, 28, 48, 0.1);
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle hover lift for cards */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Ensure images don't overflow rounded corners */
img {
    pointer-events: none;
}
