/* ===== BASE & RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: #d4512b;
    color: #fdfbf7;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #faf5e9;
}
::-webkit-scrollbar-thumb {
    background: #d9ab5a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b07836;
}

/* ===== NAVIGATION ===== */
#navbar {
    color: #fdfbf7;
    background: transparent;
    transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

#navbar.scrolled {
    background: rgba(20, 18, 16, 0.95);
    backdrop-blur-md;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #fdfbf7;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e06b47;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo-text {
    color: #fdfbf7;
    transition: color 0.3s ease;
}

.nav-logo-icon {
    color: #e06b47;
    transition: color 0.3s ease;
}

#navbar.scrolled .nav-logo-text {
    color: #fdfbf7;
}

#navbar.scrolled .nav-logo-icon {
    color: #e06b47;
}

/* Primary CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4512b;
    color: #fdfbf7;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #b53b1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 81, 43, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Secondary CTA Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fdfbf7;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid rgba(253, 251, 247, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #e06b47;
    color: #e06b47;
    transform: translateY(-2px);
}

/* Mobile Menu */
.menu-line {
    background: #fdfbf7;
}

#navbar.scrolled .menu-line {
    background: #fdfbf7;
}

#mobile-menu {
    transition: opacity 0.4s ease, pointer-events 0.4s ease;
}

#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ===== HERO ===== */
.hero-img {
    transition: transform 8s ease;
}

.hero-headline {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards 0.3s;
}

.hero-eyebrow {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 0.1s;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 0.5s;
}

.hero-ctas {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease forwards 0.7s;
}

.hero-trust {
    opacity: 0;
    animation: heroFadeUp 1s ease forwards 0.9s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #e06b47, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STORY SECTION ===== */
.story-label {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.story-images {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.story-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.story-images.revealed,
.story-content.revealed,
.story-label.revealed {
    opacity: 1;
    transform: translateX(0);
}

.story-img-accent {
    transition: transform 0.5s ease;
}

.story-img-main:hover .story-img-accent {
    transform: scale(1.05);
}

/* ===== MENU ===== */
.menu-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.menu-category.revealed {
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(200, 184, 166, 0.2);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-cat-icon {
    color: #d4512b;
    opacity: 0.7;
}

/* ===== EXPERIENCE GALLERY ===== */
.exp-gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.exp-img {
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: saturate(0.85);
}

.exp-gallery-item:hover .exp-img {
    transform: scale(1.08);
    filter: saturate(1);
}

.exp-feature {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.exp-feature.revealed {
    opacity: 1;
    transform: translateY(0);
}

.exp-feature-icon {
    color: #d4512b;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    flex-shrink: 0;
}

/* ===== RESERVATION FORM ===== */
.reservation-form-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reservation-form-wrapper.revealed {
    opacity: 1;
    transform: translateY(0);
}

.res-input {
    font-family: 'Inter', system-ui, sans-serif;
}

.res-input:focus {
    border-color: #d4512b;
    box-shadow: 0 0 0 3px rgba(212, 81, 43, 0.1);
}

.res-icon {
    color: #d4512b;
}

/* ===== VISIT SECTION ===== */
.visit-map {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease;
}

.visit-map.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ===== FOOTER ===== */
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(253, 251, 247, 0.15);
    border-radius: 2px;
    color: #efe9e1;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    border-color: #e06b47;
    color: #e06b47;
    transform: translateY(-3px);
}

/* ===== SUCCESS MESSAGE ===== */
.success-icon {
    color: #d4512b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .story-img-accent {
        display: none;
    }
    
    .story-deco {
        display: none;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-headline br {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 2.5rem;
    }
}
