/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

/* Apply base fonts */
body {
    font-family: 'Inter', sans-serif;
}
.font-serif {
    font-family: 'Playfair Display', serif;
}
/* ==============================================
NAVIGATION & FOOTER STYLES
==============================================
*/
#navbar .nav-reserve-btn {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: all 0.3s;
    border-radius: 6px; 
}
#navbar .nav-reserve-btn:hover {
    background-color: white;
    color: black;
}
#navbar.scrolled .nav-reserve-btn {
    border-color: rgba(255, 255, 255, 0.3);
}
.nav-link span {
    @apply absolute -bottom-1 left-0 w-0 h-px bg-current transition-all duration-300 group-hover:w-full;
}
.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: color 0.2s;
}
.mobile-nav-link:hover {
    color: white !important;
}
.mobile-reserve-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem 0;
    background-color: white;
    color: black;
    border-radius: 9999px;
    font-size: 1rem;
}
.mobile-reserve-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ==============================================
MENU TAB STYLES (FIXED)
==============================================
*/
/* FIX: Changed to plain CSS to guarantee the shape appears on all screen sizes */
.menu-tab { 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db; /* border-gray-300 */
    background-color: white;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.5rem; /* rounded-lg */
    color: #6b7280; /* text-gray-500 */
    transition: all 0.2s;
}
.menu-tab svg {
    color: #6b7280;
    transition: color 0.2s;
}
/* Active Tab Styles */
.active-tab { 
    background-color: #000000; /* bg-neutral-900 */
    color: white;
    border-color: #000000; /* border-neutral-900 */
}
.active-tab svg {
    color: white;
}