/* ═══════════════════════════════════════════════════════════════ */
/* ENHANCED HERO SECTION WITH FIXED ALIGNMENT & SMOOTH TYPEWRITER */
/* ═══════════════════════════════════════════════════════════════ */

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

body {
    font-family: 'Inter', system-ui, Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading Animation */
.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION - 75% TOTAL (HERO + CARDS) VIEWPORT HEIGHT */
/* ═══════════════════════════════════════════════════════════════ */

.hero-section {
    height: calc(100vh - 160px); /* Full viewport minus menu (80px) and featured attractions (80px) */
    min-height: calc(100vh - 160px); /* Ensure full coverage */
    max-height: calc(100vh - 160px); /* Prevent overflow */
    width: 100%;
    position: relative;
    background: transparent; /* Remove dark background to show banner images clearly */
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
    margin: 0;
    padding: 0;
    border: 0;
}

.hero-slide.active img {
    transform: scale(1.05);
}

/* Video Styles */
.hero-video {
    transition: opacity 0.5s ease-in-out;
    transform: scale(1.1);
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active .hero-video {
    transform: scale(1.05);
}

.video-fallback {
    transition: opacity 0.5s ease-in-out;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video.loaded {
    display: block !important;
}

.video-fallback.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ensure video container takes full width and height */
#introVideoSlide {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
    display: block;
}

#introVideoSlide video,
#introVideoSlide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    display: block;
}

/* Additional video responsiveness */
.hero-video {
    /* Ensure video covers the entire container */
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    /* Center the video */
    left: 0;
    top: 0;
    transform: scale(1.1);
    object-fit: cover;
    object-position: center;
}

.hero-slide.active .hero-video {
    transform: scale(1.05);
}

.video-fallback {
    /* Ensure fallback image covers the entire container */
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    /* Center the image */
    left: 0;
    top: 0;
    transform: scale(1.1);
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent; /* Remove dark overlay to show banner images clearly */
    z-index: 10;
}

/* ──────────── HERO NAVIGATION ──────────── */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* ──────────── HERO INDICATORS ──────────── */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* ──────────── HERO CONTENT ──────────── */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 15;
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    pointer-events: auto;
}

/* FIXED HEIGHT CONTAINERS TO PREVENT BUTTON MOVEMENT */
.hero-title-container {
    min-height: 200px; /* Increased from 160px to 200px for longer text */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 1rem;
}

.hero-subtitle-container {
    min-height: 100px; /* Increased from 80px to 100px for longer text */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.hero-cta-container {
    position: relative;
    z-index: 20;
}

/* ENHANCED HERO TITLE WITH TRAVEL-CENTRIC TYPEFACE */
.hero-title {
    font-family: 'Playfair Display', 'Merriweather', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2; /* Increased from 1.1 to 1.2 for better text spacing */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.4);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem; /* Increased from 0.5rem to 0.75rem for better word spacing */
    max-width: 100%;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal; /* Ensure text wraps naturally */
    min-height: 0; /* Allow container to expand */
}

/* IMPROVED TYPEWRITER TEXT WITH SMOOTH ANIMATION */
.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #ffffff;
    animation: typewriter 4s steps(50, end) 0.5s both, blink-caret 0.75s step-end infinite;
    max-width: 100%;
    transition: opacity 0.3s ease-in-out;
}

/* TYPEWRITER CURSOR */
.typewriter-cursor {
    font-weight: 100;
    color: #ffffff;
    animation: blink 1s infinite;
    margin-left: 2px;
}

/* IMPROVED TYPEWRITER ANIMATIONS */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #ffffff;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ENHANCED HERO SUBTITLE */
.hero-subtitle {
    font-family: 'Merriweather', 'Inter', serif;
    font-size: clamp(1.1rem, 2.8vw, 1.8rem);
    font-weight: 500;
    color: #f8fafc;
    line-height: 1.5; /* Increased from 1.4 to 1.5 for better readability */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 1000px; /* Increased from 900px to 1000px for longer text */
    margin: 0 auto;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal; /* Ensure text wraps naturally */
}

.typewriter-subtitle {
    display: inline-block;
    animation: fadeInUp 2.5s ease-out 1.5s both;
    transition: opacity 0.3s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ENHANCED CTA BUTTON */
.hero-cta-button {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #6366f1 0%, #0d9488 50%, #0891b2 100%);
    color: white;
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.4),
        0 2px 8px rgba(255, 255, 255, 0.2) inset;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounceIn 2.5s ease-out 2s both;
}

.hero-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.5),
        0 4px 16px rgba(255, 255, 255, 0.3) inset;
    background: linear-gradient(135deg, #4338ca 0%, #0f766e 50%, #0e7490 100%);
}

.hero-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* 15 FEATURED ATTRACTIONS - EXACT 120PX HEIGHT, NO WHITE SPACE */
/* ═══════════════════════════════════════════════════════════════ */

/* DESKTOP: DIRECTLY ATTACHED TO HERO BOTTOM - TOTAL 75VH */
.hero-featured-attractions {
    height: 120px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-attractions-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: infiniteScroll 60s linear infinite;
    width: max-content;
    margin: 0;
    height: 100%;
    align-items: center;
}

/* INFINITE SCROLL ANIMATION - ADJUSTED FOR ALL CARDS */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-7200px); /* Adjusted for 12 cards × 300px + gaps */
    }
}

/* Ensure cards fit properly */
.featured-attraction-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(13, 148, 136, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 16px;
    min-width: 300px;
    max-width: 300px;
    height: 80px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.1),
        0 2px 8px rgba(13, 148, 136, 0.1);
    flex-shrink: 0;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.featured-attraction-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(13, 148, 136, 0.25) 100%);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.2),
        0 4px 15px rgba(13, 148, 136, 0.2);
}

.featured-attraction-card:active {
    transform: translateY(0);
}

.featured-attraction-card:focus {
    outline: 2px solid rgba(99, 102, 241, 0.6);
    outline-offset: 2px;
}

.featured-attraction-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.featured-attraction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #0d9488 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.featured-attraction-details {
    flex-grow: 1;
    min-width: 0;
}

.featured-attraction-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.featured-attraction-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.featured-attraction-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fbbf24;
    font-weight: 600;
}

.featured-attraction-rating i {
    margin-right: 0.3rem;
}

.featured-attraction-distance {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* COLORFUL ICON GRADIENTS */
.featured-attraction-card:nth-child(1) .featured-attraction-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.featured-attraction-card:nth-child(2) .featured-attraction-icon { background: linear-gradient(135deg, #10b981, #059669); }
.featured-attraction-card:nth-child(3) .featured-attraction-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.featured-attraction-card:nth-child(4) .featured-attraction-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.featured-attraction-card:nth-child(5) .featured-attraction-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.featured-attraction-card:nth-child(6) .featured-attraction-icon { background: linear-gradient(135deg, #ec4899, #be185d); }
.featured-attraction-card:nth-child(7) .featured-attraction-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.featured-attraction-card:nth-child(8) .featured-attraction-icon { background: linear-gradient(135deg, #84cc16, #65a30d); }
.featured-attraction-card:nth-child(9) .featured-attraction-icon { background: linear-gradient(135deg, #f97316, #ea580c); }
.featured-attraction-card:nth-child(10) .featured-attraction-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.featured-attraction-card:nth-child(11) .featured-attraction-icon { background: linear-gradient(135deg, #a855f7, #9333ea); }
.featured-attraction-card:nth-child(12) .featured-attraction-icon { background: linear-gradient(135deg, #22c55e, #16a34a); }
.featured-attraction-card:nth-child(13) .featured-attraction-icon { background: linear-gradient(135deg, #fb7185, #f43f5e); }
.featured-attraction-card:nth-child(14) .featured-attraction-icon { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.featured-attraction-card:nth-child(15) .featured-attraction-icon { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.featured-attraction-card:nth-child(16) .featured-attraction-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.featured-attraction-card:nth-child(17) .featured-attraction-icon { background: linear-gradient(135deg, #10b981, #059669); }
.featured-attraction-card:nth-child(18) .featured-attraction-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN WITH MOBILE FIXES */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-section {
        height: calc(75vh - 100px);
        min-height: calc(500px - 100px); /* Increased from 450px to 500px for longer text */
    }
    
    /* Ensure video scales properly on tablets */
    .hero-video,
    .video-fallback {
        object-fit: cover;
        object-position: center;
    }
    
    .hero-featured-attractions {
        height: 100px;
    }
    
    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .featured-attraction-card {
        width: 250px;
        height: 70px;
    }
    
    .hero-text-container {
        padding-bottom: 80px; /* Increased from 70px to 80px */
    }
    
    .hero-title-container {
        min-height: 180px; /* Increased from 140px to 180px for longer text */
    }
    
    .hero-subtitle-container {
        min-height: 80px; /* Increased from 60px to 80px for longer text */
    }
    
    /* Ensure better text wrapping on tablets */
    .hero-title {
        font-size: clamp(2.2rem, 6vw, 4.5rem);
        line-height: 1.2; /* Increased from 1.1 to 1.2 */
        gap: 0.5rem; /* Reduced gap for tablet */
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.6rem);
        line-height: 1.4; /* Increased from 1.3 to 1.4 */
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    /* MOBILE: HIDE NAVIGATION BUTTONS TO PREVENT OVERLAP */
    .hero-nav-btn {
        display: none !important;
    }
    
    /* Mobile video optimization */
    .hero-video {
        transform: scale(1.05);
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
        object-position: center;
    }
    
    .video-fallback {
        transform: scale(1.05);
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
        object-position: center;
    }
    
    #introVideoSlide {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden;
    }
    
    /* MOBILE: OPTIMIZED HEIGHT FOR FULL VIEWPORT COVERAGE */
    .hero-section {
        height: calc(100vh - 140px); /* Full viewport minus menu (60px) and featured attractions (80px) */
        min-height: calc(100vh - 140px); /* Ensure full coverage */
        max-height: calc(100vh - 140px); /* Prevent overflow */
        position: relative;
        z-index: 5;
        margin: 0;
        overflow: hidden !important;
    }
    
    .hero-featured-attractions {
        position: relative;
        height: 100px;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
        margin: 0;
        padding: 20px 0;
        overflow: hidden !important;
    }
    
    /* Ensure infinite scroll works on mobile */
    .featured-attractions-container {
        animation: infiniteScroll 60s linear infinite !important;
        overflow: visible !important;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-text-container {
        padding-bottom: 50px; /* Increased from 40px to 50px */
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-indicators {
        bottom: 15px;
    }
    
    /* MOBILE: INCREASED CONTAINER HEIGHTS FOR BETTER TEXT DISPLAY */
    .hero-title-container {
        min-height: 140px; /* Increased from 100px to 140px for longer text */
    }
    
    .hero-subtitle-container {
        min-height: 80px; /* Increased from 60px to 80px for longer text */
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem); /* Increased font sizes */
        line-height: 1.4; /* Increased from 1.3 to 1.4 */
        padding: 0 0.5rem;
        max-width: 95%; /* Increased from 90% to 95% */
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 4rem); /* Increased font sizes */
        line-height: 1.2; /* Increased from 1.1 to 1.2 for better text wrapping */
        gap: 0.5rem; /* Reduced gap for mobile */
    }
    
    .featured-attraction-card {
        width: calc(85vw - 32px);
        min-width: calc(85vw - 32px);
        max-width: calc(85vw - 32px);
        height: 60px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .featured-attraction-name {
        font-size: 0.9rem;
    }
    
    /* Fix mobile viewport overflow */
    .featured-attractions-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        animation: none;
        transform: none;
    }
    
    .featured-attractions-container::-webkit-scrollbar {
        display: none;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: calc(100vh - 120px); /* Full viewport minus menu (60px) and featured attractions (60px) */
        min-height: calc(100vh - 120px); /* Ensure full coverage */
        max-height: calc(100vh - 120px); /* Prevent overflow */
        overflow: hidden !important;
    }
    
    /* Small mobile video optimization */
    .hero-video {
        transform: scale(1.05);
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
        object-position: center;
    }
    
    .video-fallback {
        transform: scale(1.05);
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
        object-position: center;
    }
    
    #introVideoSlide {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden;
    }
    
    .hero-featured-attractions {
        height: 80px;
        padding: 15px 0;
        overflow: hidden !important;
    }
    
    /* Ensure infinite scroll works on small mobile */
    .featured-attractions-container {
        animation: infiniteScroll 60s linear infinite !important;
        overflow: visible !important;
    }
    
    .featured-attraction-card {
        width: calc(90vw - 24px);
        min-width: calc(90vw - 24px);
        max-width: calc(90vw - 24px);
    }
    
    /* ENSURE NAV BUTTONS ARE HIDDEN ON SMALL MOBILE */
    .hero-nav-btn {
        display: none !important;
    }
    
    .hero-content {
        padding: 0.25rem;
    }
    
    .hero-text-container {
        padding-bottom: 40px; /* Increased from 30px to 40px */
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* SMALL MOBILE: INCREASED CONTAINER HEIGHTS FOR BETTER TEXT DISPLAY */
    .hero-title-container {
        min-height: 120px; /* Increased from 80px to 120px for longer text */
    }
    
    .hero-subtitle-container {
        min-height: 70px; /* Increased from 50px to 70px for longer text */
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem); /* Increased font sizes */
        line-height: 1.3; /* Increased from 1.2 to 1.3 */
        padding: 0 0.25rem;
        max-width: 98%; /* Increased from 95% to 98% */
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3.2rem); /* Increased font sizes */
        line-height: 1.2; /* Increased from 1.1 to 1.2 for better text wrapping */
        gap: 0.4rem; /* Reduced gap for small mobile */
    }
    
    .featured-attraction-card {
        width: 180px;
        height: 50px;
        padding: 0.6rem;
    }
    
    .featured-attraction-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .featured-attraction-name {
        font-size: 0.8rem;
    }
    
    .featured-attraction-rating,
    .featured-attraction-distance {
        font-size: 0.7rem;
    }
    
    .hero-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .typewriter-text {
        animation: typing 2.5s steps(30, end), blink-caret 0.75s step-end infinite;
    }
}

/* PERFORMANCE OPTIMIZATIONS */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-nav-btn,
    .hero-indicator,
    .featured-attraction-card,
    .typewriter-text,
    .typewriter-cursor,
    .hero-cta-button {
        animation: none;
        transition: none;
    }
    
    .featured-attractions-container {
        animation: none;
    }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    .hero-title {
        text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
    }
    
    .hero-subtitle {
        text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    }
}
