/* Design Tokens */
:root {
    --bg-dark: #080808;
    --bg-card: #121212;
    --gold: #d4af37;
    --gold-bright: #f1d592;
    --text-main: #f0f0f0;
    --text-dim: #a0a0a0;
    --text-muted: #606060;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1400px;
    --header-height: 90px;
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: initial; /* Lenis handles it */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Hide default cursor */
}

main {
    overflow-x: hidden;
    width: 100%;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform;
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.custom-cursor.active .cursor-circle {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9998;
    animation: noise 0.2s infinite;
}

@keyframes noise {
    0% { transform: translate(0,0); }
    10% { transform: translate(-5%,-5%); }
    20% { transform: translate(-10%,5%); }
    30% { transform: translate(5%,-10%); }
    40% { transform: translate(-5%,15%); }
    50% { transform: translate(-10%,5%); }
    60% { transform: translate(15%,0); }
    70% { transform: translate(0,10%); }
    80% { transform: translate(-15%,0); }
    90% { transform: translate(10%,5%); }
    100% { transform: translate(5%,0); }
}

@media (max-width: 1024px) {
    body { cursor: auto; }
    .custom-cursor { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.text-center { text-align: center; }
.gold { color: var(--gold); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }

.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.section-tag.light { color: var(--gold-bright); }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    color: #fff;
}

.section-title span {
    font-style: italic;
    color: var(--gold);
}

.section-title.light { color: #fff; }

.section-p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Loader */
.loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
}

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

.loader-logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    letter-spacing: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.loader-logo span {
    display: inline-block;
    transform: translateY(100%);
}

.loader-counter {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 300;
}

.loader-progress {
    width: 200px; height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 20px;
    position: relative;
}

.progress-bar {
    position: absolute; top: 0; left: 0;
    height: 100%; background: var(--gold);
    width: 0%;
}

.loader-phrase {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-muted);
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-3px); }

.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-sm:hover { color: var(--gold); }

/* Hero Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.falling-object {
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
    will-change: transform;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.4));
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
}

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-height);
    z-index: 120;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    width: 90%;
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 4px;
    text-decoration: none;
}

.desktop-nav { display: flex; gap: 40px; align-items: center; }
.desktop-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.desktop-nav a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 2px;
}

.menu-btn {
    background: none; border: none;
    display: flex; align-items: center; gap: 15px;
    cursor: pointer; color: #fff;
    padding: 10px 0 10px 10px;
    z-index: 120; /* Above overlay */
}

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

.hamburger { width: 30px; height: 12px; position: relative; }
.hamburger span {
    position: absolute; width: 100%; height: 1px;
    background: #fff; transition: var(--transition-smooth);
}
.hamburger span:first-child { top: 0; }
.hamburger span:last-child { bottom: 0; }

.menu-open .desktop-nav { opacity: 0; pointer-events: none; }
.menu-open .hamburger span:first-child { transform: translateY(6px) rotate(45deg); background: var(--gold); }
.menu-open .hamburger span:last-child { transform: translateY(-5px) rotate(-45deg); background: var(--gold); }
.menu-open .menu-btn-text { color: var(--gold); }

/* Nav Overlay */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 110; visibility: hidden; pointer-events: none;
}

.nav-overlay.active { visibility: visible; pointer-events: auto; }

.nav-overlay-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark); transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-overlay.active .nav-overlay-bg { transform: translateY(0); }

.nav-overlay-content {
    position: relative; z-index: 2; height: calc(100% - var(--header-height));
    display: flex; align-items: center;
    width: 90%;
    max-width: var(--container-width);
    margin: var(--header-height) auto 0;
    opacity: 0;
    transition: opacity 0.5s 0.4s;
}

.nav-overlay.active .nav-overlay-content { opacity: 1; }

.nav-columns { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; /* Adjusted for better text fit */
    width: 100%; 
    gap: 80px; 
    align-items: center;
}

.nav-links { list-style: none; }
.nav-links li { margin-bottom: 1rem; overflow: hidden; } /* Reduced margin */
.nav-link-item {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem); /* Reduced size for PC */
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    line-height: 1.1;
}
.nav-link-item:hover { color: var(--gold); transform: translateX(10px); }

.nav-preview { width: 100%; height: 400px; position: relative; overflow: hidden; }
.nav-preview-img { width: 100%; height: 100%; position: relative; }
.nav-preview-img img, .nav-preview-video {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; top: 0; left: 0;
}
.nav-preview-video { opacity: 0; transition: opacity 0.3s; }

.nav-info { margin-top: 40px; display: flex; gap: 50px; }
.info-item span { font-size: 0.7rem; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.info-item p { font-size: 1rem; color: var(--text-dim); }

/* Hero */
.hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-text-wrap { max-width: 800px; }

.hero-title { font-size: clamp(3rem, 10vw, 7rem); margin-bottom: 1.5rem; }
.hero-title .word { display: block; overflow: hidden; }

.hero-description { font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 3rem; color: var(--text-dim); }

.hero-cta-group { display: flex; gap: 20px; }

.hero-scroll {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 15px;
}
.scroll-line { width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold), transparent); position: relative; }
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: -1px; width: 3px; height: 15px;
    background: var(--gold); animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    100% { top: 65px; opacity: 0; }
}
.hero-scroll span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); }

/* Story Section */
.story-section { padding: 150px 0; background: var(--bg-dark); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.story-stats { display: flex; gap: 60px; margin-top: 40px; }
.stat-num { font-family: var(--font-heading); font-size: 3.5rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }

.story-visual { position: relative; width: 100%; height: 500px; overflow: hidden; border-radius: 4px; }
.story-slider-container { position: relative; width: 100%; height: 100%; }
.story-slider-wrapper { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.story-slide { flex: 0 0 100%; width: 100%; height: 100%; }
.story-slide img { width: 100%; height: 100%; object-fit: cover; }

.slider-controls { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none; z-index: 10; }
.slider-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: #fff; cursor: pointer; pointer-events: auto; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); transition: var(--transition-smooth); }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.slider-btn svg { width: 24px; height: 24px; fill: currentColor; }

.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition-smooth); }
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-visual { height: 400px; }
}

@media (max-width: 768px) {
    .story-visual { height: 300px; }
    .slider-btn { width: 40px; height: 40px; }
}

/* Destinations (Grid Layout) */
.destinations-section { background: #000; padding: 120px 0; }
.dest-header { margin-bottom: 60px; }

.dest-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.dest-card {
    width: 100%; height: 500px;
    min-width: 0; /* Prevent grid blowout */
    position: relative; overflow: hidden;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s;
}

.dest-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    z-index: 5;
}

.dest-card-bg { 
    width: 100%; height: 100%; position: relative; 
    overflow: hidden;
}

.dest-card-bg img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.dest-card:hover .dest-card-bg img {
    transform: scale(1.1);
}

.dest-card-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); 
}

.dest-card-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px;
    z-index: 2;
}

.dest-card-info h3 { 
    font-family: var(--font-heading);
    font-size: 2rem; color: #fff; margin-bottom: 12px; 
    transition: color 0.4s;
}

.dest-card:hover h3 { 
    color: var(--gold);
}

.dest-card-info p { 
    font-size: 0.85rem; color: var(--text-dim); margin-bottom: 20px; 
    line-height: 1.5;
    opacity: 0.8;
}

.dest-actions { 
    display: flex; gap: 10px; 
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.btn-sm:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Media query for destinations handled in Mobile Responsive section at the bottom */

/* Cuisine Split */
.cuisine-section { background: var(--bg-dark); }
.split-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.split-row.reverse { direction: rtl; }
.split-row.reverse .split-col-text { direction: ltr; }

.split-col-img { position: relative; overflow: hidden; height: 100%; min-height: 400px; }
.cuisine-video { width: 100%; height: 100%; object-fit: cover; }
.cuisine-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }

.split-col-text { display: flex; align-items: center; justify-content: center; padding: 10%; }

@media (max-width: 1024px) {
    .split-row { grid-template-columns: 1fr; min-height: auto; }
    .split-row.reverse { direction: ltr; }
    .split-col-img { height: 400px; min-height: 300px; }
    .split-col-text { padding: 60px 10%; }
}

@media (max-width: 768px) {
    .split-col-img { height: 300px; }
    .split-col-text { padding: 40px 5%; }
}
.cuisine-features { list-style: none; margin: 30px 0; }
.cuisine-features li { margin-bottom: 15px; color: var(--text-dim); display: flex; align-items: center; gap: 10px; }
.cuisine-features i { color: var(--gold); font-size: 0.8rem; }

/* Events Section */
.events-section { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.events-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.events-video { width: 100%; height: 100%; object-fit: cover; }
.events-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }

.events-content { position: relative; z-index: 2; width: 100%; }
.events-p { max-width: 700px; margin: 0 auto 50px; color: var(--text-dim); font-size: 1.2rem; }

.event-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.mini-event-card {
    background: rgba(255,255,255,0.05); padding: 30px;
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
}
.mini-event-card.highlight { border-color: var(--gold); }
.mini-event-card .day { font-size: 0.7rem; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.mini-event-card .event-name { font-family: var(--font-heading); font-size: 1.3rem; color: #fff; }

/* Gallery Masonry */
.gallery-section { padding: 150px 0; }
.gallery-header { margin-bottom: 60px; }
.gallery-masonry {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px; gap: 20px;
}
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.gallery-item:hover img { transform: scale(1.1); }

.item-wide { grid-column: span 2; }
.item-tall { grid-row: span 2; }

/* Footer */
.site-footer { background: #000; padding-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 80px; margin-bottom: 80px; }

.footer-logo { font-size: 3.5rem; color: var(--gold); margin-bottom: 10px; }
.footer-motto { font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 30px; }

.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 1.5rem; color: var(--text-dim); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1.2rem; margin-bottom: 30px; color: #fff; text-transform: uppercase; letter-spacing: 2px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 15px; }
.footer-links-col a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--gold); }

.footer-contact-col p { color: var(--text-dim); margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.footer-contact-col i { color: var(--gold); }

.ai-btn {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--gold); color: var(--gold);
    padding: 12px 20px; margin-top: 20px; cursor: pointer;
    font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px;
}
.ai-btn:hover { background: var(--gold); color: #000; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; }
.footer-legal a { color: var(--text-muted); margin-left: 20px; text-decoration: none; }

/* Mobile Responsive */
.header-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: span 2; }
    .story-grid { grid-template-columns: 1fr; }
    
    .dest-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-card { height: 400px; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }
    .section-title { font-size: 2.5rem; }
    .hero-title { font-size: 3.5rem; }
    .hero-cta-group { flex-direction: column; }
    
    .loader-logo { font-size: 3rem; letter-spacing: 5px; }
    
    .story-section, .destinations-section, .gallery-section { padding: 80px 0; }
    
    .story-stats { gap: 30px; justify-content: center; }
    .stat-num { font-size: 2.5rem; }
    
    .dest-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    .dest-card { width: 100%; height: 350px; }
    .dest-card-info { padding: 20px; }
    .dest-card-info h3 { font-size: 1.1rem; }
    .dest-card-info p { display: none; }
    
    .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 10px; }
    .item-wide { grid-column: span 2; }
    
    .cuisine-features { margin: 20px 0; }
    .cuisine-features li { font-size: 0.9rem; }
    
    .event-cards-grid { grid-template-columns: 1fr; gap: 15px; padding: 0 20px; }
    .events-section { height: auto; padding: 100px 0; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand-col { grid-column: span 1; text-align: center; }
    .footer-logo { font-size: 2.5rem; }
    .footer-social { justify-content: center; }
    .footer-links-col, .footer-contact-col { text-align: center; }
    .footer-contact-col p { justify-content: center; }
    
    .nav-columns { grid-template-columns: 1fr; }
    .nav-col-right { display: none; }
    .nav-link-item { font-size: 2.5rem; }
    .nav-overlay-content { width: 90%; margin: var(--header-height) auto 0; height: calc(100% - var(--header-height)); }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-legal {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .footer-legal a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .dest-grid-container {
        gap: 8px;
        padding: 0 5px;
    }
    .dest-card { height: 220px; }
    .dest-card-info { padding: 15px; }
    .dest-card-info h3 { font-size: 0.9rem; margin-bottom: 5px; }
    .dest-actions { flex-direction: column; gap: 5px; }
    .btn-sm { padding: 4px 8px; font-size: 0.6rem; text-align: center; }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-img {
    overflow: hidden;
    position: relative;
}

.reveal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-img.active img {
    transform: scale(1);
}

/* Section Title Animations */
.section-title {
    overflow: hidden;
}

.section-title .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.active .char {
    transform: translateY(0);
}

/* Card Enhancements */
.card-location {
    overflow: hidden;
    position: relative;
}

.card-location img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-location:hover img {
    transform: scale(1.1);
}

.card-content {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-location:hover .card-content {
    transform: translateY(-10px);
}

/* Cuisine Hover */
.cuisine-item {
    transition: var(--transition-smooth);
}

.cuisine-item:hover {
    transform: scale(1.02);
}

.cuisine-img {
    overflow: hidden;
}

.cuisine-img img {
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cuisine-item:hover .cuisine-img img {
    transform: scale(1.1);
}
