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

:root {
    --primary: #fdb100;
    --secondary: #336601;
    --accent: #ff0171;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --gradient-primary: var(--primary);
    --gradient-secondary: var(--secondary);
    --gradient-accent: var(--accent);
    
    --shadow-minimal: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    --radius: 8px;
    --radius-lg: 16px;
    --spacing: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    background: var(--white);
    font-weight: 400;
    letter-spacing: -0.005em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: var(--primary);
    z-index: 1000;
    padding: var(--spacing) 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(253, 177, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

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

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu-mobile {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--primary);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    padding: var(--spacing-lg) 0;
    box-shadow: 0 10px 27px rgba(253, 177, 0, 0.3);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-menu-mobile.active {
    display: block;
    transform: translateY(0);
}

.nav-link-mobile {
    display: block;
    padding: 16px var(--spacing-lg);
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.nav-link-mobile:hover {
    color: var(--white);
    background: var(--secondary);
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: var(--radius);
}

.nav-link:hover {
    color: var(--white);
    background: var(--secondary);
}

.cta-button {
    background: var(--primary);
    color: var(--black);
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('PGF HERO.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xl);
}

.hero-title {
    margin-bottom: var(--spacing-xl);
}

.title-main {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing);
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.title-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.discount-badge {
    background: var(--primary);
    color: var(--black);
    padding: var(--spacing) 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--primary);
}

.discount-badge span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.discount-badge small {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Minimal decorative elements - removed for clean look */
.hero-decorations {
    display: none;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    container-type: inline-size;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: min(177.78vh, 100vw);
    max-height: min(100vh, 56.25vw);
    background: var(--white);
}

/* Video placeholder styles */
.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-thumbnail img {
    transform: scale(1.02);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Loaded video iframe */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
    background: var(--white);
}

/* Container queries for modern responsive design */
@container (max-width: 1200px) {
    .video-section {
        height: 90vh;
    }
    
    .video-wrapper {
        max-height: min(90vh, 56.25vw);
    }
}

@container (max-width: 768px) {
    .video-section {
        height: 80vh;
        min-height: 300px;
    }
    
    .video-wrapper {
        max-height: min(80vh, 56.25vw);
    }
}

@container (max-width: 480px) {
    .video-section {
        height: 70vh;
        min-height: 250px;
    }
    
    .video-wrapper {
        max-height: min(70vh, 56.25vw);
    }
}

/* Fallback media queries for older browsers */
@media (max-width: 1200px) {
    .video-section {
        height: 90vh;
    }
}

@media (max-width: 768px) {
    .video-section {
        height: 80vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 70vh;
        min-height: 250px;
    }
}

/* Modern CSS for aspect ratio maintenance */
@supports (aspect-ratio: 16 / 9) {
    .video-wrapper {
        height: auto;
    }
}

/* Alternative for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16 / 9) {
    .video-wrapper {
        height: 0;
        padding-bottom: 56.25%;
    }
    
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        border-radius: var(--radius);
    }
}

/* Sticky Menu */
.sticky-menu {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    gap: var(--spacing-xl);
}

.sticky-menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-menu-link:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 177, 0, 0.3);
}

.sticky-menu-link.active {
    color: var(--white);
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(51, 102, 1, 0.3);
}

.sticky-menu-link i {
    font-size: 1rem;
    color: inherit;
}

/* Activities Section */
.activities {
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    background: rgba(253, 177, 0, 0.85);
    backdrop-filter: blur(8px);
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--spacing);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.activities .section-header h2,
.pricing .section-header h2 {
    color: var(--secondary);
}

.activities .section-header p,
.pricing .section-header p {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.5;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.5;
}

/* Modern Carousel - Normal Style */
.modern-carousel {
    --carousel-gap: 20px;
    --carousel-height: auto;
    --slides-per-view: 1;
    
    margin-block: var(--spacing-xl);
    container-type: inline-size;
    position: relative;
}

.carousel-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-container {
    display: flex;
    gap: var(--carousel-gap);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.carousel-slide.active {
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-height: 80vh;
}

/* Controls */
.carousel-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
    padding: 0 var(--spacing);
}

.carousel-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-800);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(8px);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-soft);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--gray-300);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-block-start: var(--spacing-lg);
    padding: var(--spacing) 0;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicator:hover {
    border-color: var(--secondary);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 0 2px rgba(253, 177, 0, 0.2);
}

/* Responsive Behavior */
@container (width < 768px) {
    .modern-carousel {
        --slides-per-view: 1;
    }
    
    .carousel-slide img {
        max-height: 70vh;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
        margin: 0 8px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@container (width >= 768px) {
    .modern-carousel {
        --slides-per-view: 2;
        --carousel-gap: 24px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
    
    .carousel-slide img {
        max-height: 60vh;
    }
}

@container (width >= 1024px) {
    .modern-carousel {
        --slides-per-view: 2;
        --carousel-gap: 30px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .carousel-slide img {
        max-height: 65vh;
    }
}"}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .modern-carousel {
        --slides-per-view: 1;
    }
    
    .carousel-slide img {
        max-height: 65vh;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        margin: 0 6px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    /* Mobile translucent adjustments */
    .activities,
    .pricing {
        background: rgba(253, 177, 0, 0.9);
        backdrop-filter: blur(6px);
    }
}

/* Food Section */
.food {
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    background: var(--white);
}

/* Food Carousel Specific Styles */
.food-carousel-section {
    margin-top: 0;
}

.food-carousel {
    /* Inherits slides-per-view from main carousel rules */
}

.food-carousel .carousel-slide img:hover {
    transform: scale(1.02);
}

.food-carousel .carousel-btn {
    background: rgba(51, 102, 1, 0.9);
    border-color: var(--secondary);
    color: white;
}

.food-carousel .carousel-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.food-carousel .carousel-indicator {
    border-color: var(--secondary);
}

.food-carousel .carousel-indicator.active {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(51, 102, 1, 0.2);
}

.food-carousel .carousel-indicator:hover {
    border-color: var(--accent);
}

/* Food carousel inherits responsive behavior from main carousel */

.food-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.food-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--spacing);
    letter-spacing: -0.02em;
}

.food-header p {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
}

.food-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.food-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.food-category {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-minimal);
}

.food-category:hover {
    transform: translateX(4px);
}

.food-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.food-category h3 i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 20px;
}

.food-category p {
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.9rem;
}

.food-image {
    display: none;
}

/* Pricing Section */
.pricing {
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    background: rgba(253, 177, 0, 0.85);
    backdrop-filter: blur(8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 2);
}

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--spacing);
    letter-spacing: -0.02em;
}

.pricing-header p {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.ticket-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.ticket-card.featured {
    transform: scale(1.05);
}

.ticket-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.ticket-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ticket-card:hover img {
    transform: scale(1.02);
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    margin: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
}

.btn-book-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid var(--secondary);
    box-shadow: 0 8px 25px rgba(51, 102, 1, 0.3);
}

.btn-book-main:hover {
    background: #2a5501;
    border-color: #2a5501;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(51, 102, 1, 0.5);
}

.btn-book {
    background: var(--primary);
    color: var(--black);
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    margin-top: var(--spacing);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn-book:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.pricing-notes {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
}

.note-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: calc(var(--spacing-xl) * 2) var(--spacing-lg);
    background: var(--secondary);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 2);
}

.contact-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--spacing);
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: start;
}

.contact-info {
    display: grid;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 2px;
    min-width: 20px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.info-item p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.9rem;
}

.booking-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing);
    font-weight: 600;
}

.cta-content p {
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-size: 0.9rem;
}

.cta-content .btn-primary {
    background: var(--primary);
    color: var(--black);
    border: 2px solid var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: calc(var(--spacing-xl) * 1.5) var(--spacing-lg) var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing);
    color: var(--primary);
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links h4 {
    margin-bottom: var(--spacing);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-office h4 {
    margin-bottom: var(--spacing);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.footer-office p {
    opacity: 0.8;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Minimal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Minimal Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 var(--spacing);
    }
    
    .logo-image {
        height: 40px;
        max-width: 200px;
    }
    
    .hero {
        padding: calc(var(--spacing-xl) * 1.5) var(--spacing);
    }
    
    .title-main {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .title-sub {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
    }
    
    .sticky-menu-items {
        gap: 6px;
        padding: 4px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sticky-menu-link {
        padding: 4px 6px;
        font-size: 0.65rem;
        gap: 2px;
    }
    
    .sticky-menu-link i {
        font-size: 0.8rem;
    }
    
    .hero-highlights {
        gap: var(--spacing);
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing);
    }
    
    .activities,
    .food,
    .pricing,
    .contact {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .carousel-controls {
        padding: 0 4px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        margin: 0 2px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-indicators {
        margin-block-start: 8px;
        gap: 8px;
        padding: 8px 0;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .food-categories,
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .ticket-card.featured {
        transform: none;
    }
    
    .btn-book-main {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .food-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    
    .pricing-notes {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    .activities,
    .food,
    .pricing,
    .contact {
        padding-left: 4px;
        padding-right: 4px;
    }
    
    .carousel-controls {
        padding: 0 2px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        margin: 0 1px;
    }
    
    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing: 0.75rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    .sticky-menu-items {
        gap: 4px;
        padding: 2px 0;
    }
    
    .sticky-menu-link {
        padding: 2px 4px;
        font-size: 0.6rem;
        gap: 1px;
    }
    
    .sticky-menu-link i {
        font-size: 0.7rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-tagline {
        font-size: 0.65rem;
    }
    
    .activities,
    .food,
    .pricing,
    .contact {
        padding-left: 2px;
        padding-right: 2px;
    }
    
    .carousel-controls {
        padding: 0 1px;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
        margin: 0;
    }
    
    .carousel-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .carousel-indicators {
        margin-block-start: 6px;
        gap: 6px;
        padding: 6px 0;
    }
    
    .carousel-indicator {
        width: 6px;
        height: 6px;
    }
    
    .activity-card,
    .food-category,
    .pricing-card {
        padding: var(--spacing-lg);
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Lazy Loading Styles */
.lazy-image {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.lazy-image.loaded {
    opacity: 1;
    background: none;
    animation: none;
}

.lazy-image.error {
    opacity: 0.5;
    background: #f5f5f5;
    animation: none;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Critical resource hints */
@supports (content-visibility: auto) {
    .carousel-slide:not(.active) {
        content-visibility: auto;
        contain-intrinsic-size: 400px;
    }
    
    .section:not(.in-viewport) {
        content-visibility: auto;
        contain-intrinsic-size: 800px;
    }
}

/* GPU acceleration for animations */
.carousel-container,
.hero-content,
.btn-primary,
.btn-book-main {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimize font rendering with consistent font-display and metric overrides */
@font-face {
    font-family: 'Inter-fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    font-display: swap;
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0.00%;
    size-adjust: 107.40%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0.00%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfAZ9hiA.woff2') format('woff2');
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0.00%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKfAZ9hiA.woff2') format('woff2');
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0.00%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fAZ9hiA.woff2') format('woff2');
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0.00%;
}

/* Minimal Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}