/* Reset & Base Variables */
:root {
    /* Luxury Dark Theme Palette */
    --bg-primary: #121619; /* Obsidian Black */
    --bg-secondary: #1C252E; /* Deep Midnight Blue */
    --bg-card: #B36B39; /* Cognac Brown (for secondary cards/mixes) */
    --bg-dark: #121619; 
    --bg-reservation: #1C252E; 
    
    --text-main: #F5E6CC; /* Warm Tungsten Light */
    --text-light: rgba(245, 230, 204, 0.7); 
    --text-white: #FFFFFF;
    
    --btn-primary: #D35400; /* Burnt Amber */
    --accent-hover: #8E2800; /* Crimson Ember */
    
    --accent-gold: #D4AF37; /* Metallic Gold */
    --accent-brown: #B36B39; /* Cognac Brown */
    
    --font-heading: 'Libre Baskerville', 'PT Serif', 'Baskerville', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;
    --space-2xl: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold); 
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 168, 124, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(18, 22, 25, 0.95); /* Obsidian Black */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Metallic Gold faded */
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.brand-logo:hover {
    opacity: 0.9;
}

.brand-name {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 4px;
}

.brand-desc {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4px;
}

.lang-option {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 16px;
    transition: all 0.3s;
}

.lang-option:hover {
    color: var(--accent-gold);
}

.lang-option.active {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Icons globally */
i.ph, i.ph-fill {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 1. Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* For GSAP zoom effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 22, 25, 0.4), rgba(18, 22, 25, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-white);
    max-width: 900px;
}

.hero .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: 1px;
    color: var(--text-white);
}

.hero-title i {
    font-style: italic;
    font-weight: 500;
    color: var(--accent-gold); 
}

.hero-text {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 48px;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-white);
    font-size: 0.7rem;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-indicator span {
    margin-bottom: 12px;
    opacity: 0.7;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--text-white);
    border: 1px solid var(--accent-gold);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* 2. About Section */
.about {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--bg-secondary);
    z-index: -1;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* 3. Gallery Section */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    text-align: center;
}

.gallery-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: var(--space-xl);
}

.gallery-marquee {
    display: flex;
    width: max-content;
    animation: marquee-gallery 30s linear infinite;
}

.gallery-marquee:hover {
    animation-play-state: paused;
}

.gallery-marquee-content {
    display: flex;
    gap: 16px;
    padding: 0 8px;
}

.gallery-item {
    width: 400px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes marquee-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 85vw; /* On mobile, one large image fills most of the screen */
        height: 85vw;
        max-height: 400px;
    }
}

/* 4. Google Reviews Marquee */
.reviews {
    padding: var(--space-xl) 0;
    background: var(--bg-primary);
    overflow: hidden;
    text-align: center;
}

.reviews-header {
    margin-bottom: 40px;
}

.stars {
    color: var(--accent-gold); 
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.reviews-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.reviews-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fading edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 24px;
    padding: 0 12px;
}

.review-card {
    width: 350px;
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-top strong {
    font-weight: 600;
    color: var(--text-main);
}

.stars-small {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.review-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 5. Menu Section */
.menu {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    text-align: center;
}

.menu-book-link {
    display: inline-block;
    margin-top: var(--space-xl);
    perspective: 1000px;
}

.menu-book {
    position: relative;
    width: 320px;
    aspect-ratio: 3/4;
    border-radius: 4px 12px 12px 4px;
    box-shadow: 20px 20px 40px rgba(0,0,0,0.4),
                -2px 0 5px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.menu-book::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    z-index: 5;
}

.menu-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 22, 25, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.menu-hover-overlay i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.menu-hover-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.menu-book-link:hover .menu-book {
    transform: rotateY(-10deg) scale(1.02);
    box-shadow: 30px 30px 50px rgba(0,0,0,0.5),
                -5px 0 10px rgba(0,0,0,0.2);
}

.menu-book-link:hover .menu-hover-overlay {
    opacity: 1;
}

/* 6. Reservation Section */
.reservation {
    padding: var(--space-2xl) 0;
    background: var(--bg-reservation); 
    color: var(--text-main);
}

.reservation .section-subtitle {
    color: var(--accent-gold);
}

.reservation .section-title {
    color: var(--text-main);
}

.reservation-desc {
    color: var(--text-light);
    margin-bottom: 48px;
}

.reservation-form {
    background: var(--bg-primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-icon-wrapper, .select-wrapper {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

input[type="date"], input[type="tel"], input[type="text"], select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    -webkit-appearance: none;
}

/* Date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    pointer-events: none;
}

.form-group.full-width {
    margin-bottom: 32px;
}

textarea {
    resize: vertical;
    min-height: 100px;
    background: var(--bg-secondary);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.action-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-text strong {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-secondary {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--accent-hover);
}

.btn-whatsapp {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: var(--accent-hover);
}

.reservation-footer {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 40px;
}

.info-block {
    text-align: center;
}

.info-title {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-text {
    font-size: 1rem;
    color: var(--text-light);
}

/* 7. Contact Section */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.detail-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.detail-item strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.detail-item p {
    color: var(--text-light);
}

.contact-map {
    width: 100%;
}

.map-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay-box {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--text-white);
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.map-overlay-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--bg-dark);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 64px 0 24px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* --- NEW SECTIONS (From Redesign) --- */

/* Features Banner */
.features-banner {
    background: var(--bg-primary);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.features-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 40px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-col p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Food Showcase */
.food-showcase {
    padding: var(--space-2xl) 0;
    background: var(--bg-dark);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.showcase-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.showcase-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover .showcase-img img {
    transform: scale(1.05);
}

.showcase-info {
    padding: 24px;
    text-align: center;
}

.showcase-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.showcase-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Story Block */
.story-block {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

.story-container {
    max-width: 800px;
    text-align: center;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 40px 0;
    opacity: 0.5;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 32px;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Horizontal Reservation */
.reservation {
    position: relative;
    padding: var(--space-2xl) 0;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 22, 25, 0.85);
    z-index: 2;
}

.reservation-container {
    position: relative;
    z-index: 3;
}

.reservation-form-vertical {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(28, 37, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reservation-form-vertical .form-group {
    width: 100%;
}

.reservation-form-vertical textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
}

.form-actions-split {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.form-actions-split .btn {
    flex: 1;
    padding: 14px 0;
    font-size: 0.85rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-email {
    background: var(--bg-dark);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-email:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Contact Compact */
.contact-details-compact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-details-compact i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.contact-hours {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-hours strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 8px;
}

/* --- Marquee Reverse --- */
.marquee-reverse {
    display: flex;
    width: max-content;
    animation: marquee-reverse 40s linear infinite;
}

.marquee-reverse:hover {
    animation-play-state: paused;
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .brand-name {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .brand-desc {
        font-size: 0.85rem;
    }
    
    .brand-logo {
        gap: 8px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 22, 25, 0.95);
        backdrop-filter: blur(10px);
        padding: 24px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .about-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title { font-size: 2.25rem; }
    
    .stats-row {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .reservation-form {
        padding: 24px;
    }
    
    .form-actions {
        grid-template-columns: 1fr;
    }
    
    .reservation-footer {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .features-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-vertical {
        padding: 24px;
    }
    
    .story-title {
        font-size: 2rem;
    }
}

/* --- PREMIUM ANIMATION OVERRIDES --- */

/* Buttons */
.btn, .action-btn, .btn-whatsapp, .btn-email, .btn-primary, .btn-secondary, .btn-outline {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn:hover, .action-btn:hover, .btn-whatsapp:hover, .btn-email:hover, .btn-primary:hover, .btn-secondary:hover, .btn-outline:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Nav links */
.nav-links a {
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block;
}
.nav-links a:hover {
    transform: translateY(-2px);
    color: var(--accent-gold) !important;
}

/* Showcase & Cards */
.showcase-item {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.showcase-item:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}
.showcase-img img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.showcase-item:hover .showcase-img img {
    transform: scale(1.1) !important;
}

/* Menu Book */
.menu-book {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.menu-book-link:hover .menu-book {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
}

/* Images & Gallery */
.gallery-item img, .about-image img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.gallery-item:hover img, .about-image:hover img {
    transform: scale(1.08) !important;
}
