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

/* Smooth theme transitions for all elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

:root {
    /* Color Palette - Light Theme */
    --yellow-fiesta: #FFD100;
    --red-salsa: #D7263D;
    --black: #121212;
    --green-limon: #66BB6A;
    --white: #FFFFFF;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    
    /* Background Colors - Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #f8f9fa;
    --bg-navbar: rgba(255, 255, 255, 0.95);
    --bg-card: #FFFFFF;
    
    /* Text Colors - Light Theme */
    --text-primary: #121212;
    --text-secondary: #6c757d;
    --text-muted: #8e9aaf;
    
    /* Border Colors - Light Theme */
    --border-color: #e9ecef;
    --border-light: #f1f3f4;
    
    /* Typography */
    --font-title: 'Bebas Neue', cursive;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Progress Bar */
    --progress-height: 4px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    /* Background Colors - Dark Theme */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-navbar: rgba(26, 26, 26, 0.95);
    --bg-card: #2d2d2d;
    
    /* Text Colors - Dark Theme */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    
    /* Border Colors - Dark Theme */
    --border-color: #555555;
    --border-light: #444444;
    
    /* Shadows - Dark Theme */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: var(--progress-height);
    background: linear-gradient(90deg, var(--yellow-fiesta), var(--red-salsa));
    z-index: 10001;
    transition: width 0.1s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-fiesta), var(--red-salsa));
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-navbar);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-light);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-right: 30px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-salsa);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-salsa);
    transition: width 0.3s ease;
}

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

.cta-btn {
    background: var(--red-salsa);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Nav Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.theme-toggle,
.language-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover,
.language-toggle:hover {
    background: var(--bg-secondary);
    color: var(--red-salsa);
}

/* Theme toggle specific colors */
.theme-toggle .fa-sun {
    color: var(--yellow-fiesta);
}

.theme-toggle .fa-moon {
    color: #4A90E2;
}

.language-toggle {
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border-color);
}

.language-toggle:hover {
    border-color: var(--red-salsa);
}

/* Hide mobile controls on desktop */
.mobile-controls {
    display: none;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4a90e2 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-logo {
    flex-shrink: 0;
    text-align: center;
}

.hero-logo-img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 209, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
    text-align: left;
}

@keyframes titleGlow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
    to { text-shadow: 2px 2px 20px rgba(255, 209, 0, 0.8); }
}

@keyframes subtitleGlow {
    from { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        transform: scale(1);
    }
    to { 
        text-shadow: 2px 2px 15px rgba(255, 215, 0, 0.8);
        transform: scale(1.02);
    }
}

@keyframes descriptionPulse {
    0%, 100% { 
        opacity: 1;
        transform: translateY(0px);
    }
    50% { 
        opacity: 0.9;
        transform: translateY(-2px);
    }
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: subtitleGlow 2.5s ease-in-out infinite alternate;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    animation: descriptionPulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
    line-height: 1.6;
    background: linear-gradient(45deg, #ffffff, #f0f8ff, #e6f3ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite, descriptionPulse 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(15px, 3vh, 30px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--yellow-fiesta);
    color: var(--black);
}

.btn-secondary:hover {
    background: var(--green-limon);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    color: var(--red-salsa);
    border: 2px solid var(--red-salsa);
}

.btn-outline:hover {
    background: var(--red-salsa);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlight {
    font-size: 1.1rem;
    color: var(--red-salsa);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(215, 38, 61, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--red-salsa);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--yellow-fiesta), var(--green-limon));
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow-medium);
}

.image-placeholder p {
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--yellow-fiesta);
}

.service-icon {
    font-size: 3rem;
    color: var(--red-salsa);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.package-card.featured {
    border-color: var(--yellow-fiesta);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-salsa);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red-salsa);
    font-family: var(--font-title);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.package-features i {
    color: var(--green-limon);
    font-size: 1.1rem;
    filter: brightness(1.2);
}

.custom-package {
    margin-top: 60px;
    text-align: center;
}

.custom-content {
    background: linear-gradient(135deg, var(--yellow-fiesta), var(--green-limon));
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.custom-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.custom-content i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.custom-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Reservation Section */
.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.reservation-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.package-options {
    list-style: none;
    margin-bottom: 30px;
}

.package-options li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--red-salsa);
    width: 20px;
    filter: brightness(1.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-salsa);
    box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--red-salsa);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-card a {
    color: var(--red-salsa);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--black);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--red-salsa);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--yellow-fiesta);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-text {
    color: var(--red-salsa) !important;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .nav-controls {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100vw;
        height: 100vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 0;
        z-index: 999;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.3rem;
        margin: 0;
        padding: 14px 0;
        border-radius: 0;
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
        font-weight: 600;
        letter-spacing: 0.8px;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary);
        position: relative;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: transparent;
        transform: none;
        box-shadow: none;
        color: var(--red-salsa);
        border-bottom-color: var(--red-salsa);
        padding-left: 10px;
    }
    
    .nav-menu .cta-btn {
        margin-top: 25px;
        font-size: 1.2rem;
        padding: 16px 30px;
        border-radius: 12px;
        background: var(--red-salsa);
        color: var(--white) !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        width: 100%;
        text-align: center;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu .cta-btn:hover {
        background: var(--black);
        transform: translateY(-2px);
        box-shadow: var(--shadow-light);
    }
    
    /* Hide desktop controls on mobile */
    .nav-menu .nav-controls {
        display: none;
    }
    
    /* Mobile controls in sidenav */
    .nav-menu .mobile-controls {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        gap: 15px;
        z-index: 1001;
    }
    
    .nav-menu .mobile-controls .theme-toggle,
    .nav-menu .mobile-controls .language-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 50%;
        background: var(--bg-secondary);
        border: 2px solid var(--border-color);
        box-shadow: var(--shadow-light);
    }
    
    /* Mobile navigation layout */
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100vh;
        width: 100vw;
        padding: 80px 30px 30px;
        gap: 15px;
        box-sizing: border-box;
    }
    
    /* Show mobile controls only on mobile */
    .nav-menu .mobile-controls {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: clamp(20px, 4vh, 35px);
        padding: 0 15px;
        height: 100vh;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 60px;
        box-sizing: border-box;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        text-align: center;
        font-size: clamp(2.2rem, 6vw, 3.5rem);
        margin-bottom: clamp(8px, 2vh, 15px);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
        margin-bottom: clamp(6px, 1.5vh, 10px);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        margin-bottom: clamp(20px, 5vh, 35px);
        line-height: 1.4;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: clamp(12px, 2.5vh, 18px);
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: clamp(220px, 70vw, 320px);
        padding: clamp(14px, 3.5vh, 22px) clamp(18px, 4vw, 28px);
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        justify-content: center;
    }
    
    .hero-logo-img {
       
        width: 100%;
        height: 100%;
        
        margin-bottom: clamp(10px, 2vh, 20px);
    }

    .hero-title {
        font-size: clamp(3.5rem, 6vw, 5.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
        letter-spacing: 0.3px;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        letter-spacing: 0.2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reservation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        padding-top: 110px;
        height: auto;
        gap: clamp(15px, 3vh, 25px);
    }

    .hero-logo-img {
        max-width: clamp(300px, 40vw, 400px);
        margin-bottom: clamp(8px, 1.5vh, 15px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.8rem);
        margin-bottom: clamp(6px, 1.5vh, 12px);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(2rem, 3vw, 3.4rem);
        margin-bottom: clamp(3px, 1vh, 8px);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 2.2vw, 1rem);
        margin-bottom: clamp(15px, 4vh, 25px);
        line-height: 1.3;
    }
    
    .hero-buttons .btn {
        max-width: clamp(200px, 65vw, 280px);
        padding: clamp(12px, 3vh, 18px) clamp(14px, 3.5vw, 22px);
        font-size: clamp(0.8rem, 2.2vw, 1rem);
    }
    
    .scroll-indicator {
        bottom: clamp(8px, 1.5vh, 15px);
        font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 0;
    }
}

/* AOS Custom Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--red-salsa);
    border-radius: 4px;
}

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