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

/* CSS Variables for Theme */
:root {
    --primary-color: #e0a3c8;
    /* Darker pink */
    --secondary-color: #c77dff;
    /* Darker plum */
    --accent-color: #c4b5fd;
    /* Darker lavender */
    --dark-color: #9d4edd;
    /* Darker orchid */
    --light-color: #fde68a;
    /* Darker lemon chiffon */
    --text-color: #2A2A2A;
    /* Dark text */
    --background-color: #e5e7eb;
    /* Darker white smoke */
    --primary-gradient: linear-gradient(135deg, #e0a3c8 0%, #c4b5fd 100%);
    --secondary-gradient: linear-gradient(135deg, #fde68a 0%, #c77dff 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

/* Accessibility Improvements */
button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.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;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.hover-lift,
.hover-glow,
.hover-float,
.animate-on-scroll,
.parallax-slow {
    will-change: transform;
}

button,
.btn {
    will-change: transform, box-shadow;
}

.image-gallery img,
.gallery-item {
    will-change: transform, box-shadow;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--primary-color);
    }

    50% {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(50px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.slide-in-up {
    transform: translateY(100px);
}

.animate-on-scroll.bounce-in {
    transform: scale(0.3);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hover-glow:hover {
    animation: glow 1.5s ease-in-out infinite;
}

.hover-float:hover {
    animation: float 2s ease-in-out infinite;
}

.btn-pulse:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-slow {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    font-size: 1.2rem;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Body */
body {
    font-family: 'Comic Sans MS', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--secondary-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease-out;
}

/* Footer */
footer {
    margin-top: auto;
    background: var(--secondary-gradient);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.share-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons span {
    font-weight: bold;
    margin-right: 5px;
}

.share-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook:hover {
    background: #1877f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
}

.share-btn.whatsapp:hover {
    background: #25d366;
}

/* Breadcrumbs */
.breadcrumb-nav {
    background: var(--background-color);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

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

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item span {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
    font-weight: bold;
}

.social-links {
    margin-top: 10px;
}

.social {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social:hover {
    color: var(--light-color);
}

/* Header */
header {
    background: var(--secondary-gradient);
    color: var(--text-color);
    padding: 0 0 0.5rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    border-radius: var(--border-radius);
    transform: scale(1.5);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 1s;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    top: -20px;
}

.logo:hover {
    transform: scale(1.6) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.logo.zoomed {
    position: fixed;
    top: -20px;
    left: 50%;
    transform: translate(-50%, 0) scale(2);
    z-index: 10000;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

.logo.fade-out {
    opacity: 0;
    transform: scale(0.5);
}

/* Navigation */
nav {
    background-color: transparent;
    padding: 1rem;
    text-align: center;
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

.burger:hover {
    transform: scale(1.1);
    color: var(--light-color);
}

.menu-group {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 0.25rem 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-right {
    display: flex;
    align-items: center;
}

.social-mobile {
    display: none;
    margin-right: 10px;
}

.social-mobile .social {
    margin: 0 5px;
    font-size: 0.8rem;
}

.social-icon {
    height: 30px;
    width: auto;
}

nav a {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

nav a:hover::before {
    left: 0;
}

nav a:hover {
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

nav a.active {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    border-color: var(--primary-color);
}

nav .lang a {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    margin: 0 0.25rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

nav .lang a:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

nav .lang a.active {
    font-weight: bold;
    text-decoration: underline;
}

.lang {
    float: right;
    margin-top: 0.5rem;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.container {
    flex: 1;
    padding: 20px;
    padding-top: 100px;
}

section {
    margin-bottom: 2rem;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

form input,
form textarea,
form select {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-color);
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(168, 218, 220, 0.5);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
}

form input:hover,
form textarea:hover,
form select:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Micro-interactions */
.checkbox-wrapper,
.radio-wrapper {
    position: relative;
    display: inline-block;
}

.checkbox-wrapper input,
.radio-wrapper input {
    opacity: 0;
    position: absolute;
}

.checkbox-wrapper label,
.radio-wrapper label {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}

.checkbox-wrapper label::before,
.radio-wrapper label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    background: white;
    transition: all 0.3s ease;
}

.checkbox-wrapper label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.checkbox-wrapper input:checked+label::after {
    transform: translateY(-50%) scale(1);
}

.checkbox-wrapper input:checked+label::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.radio-wrapper label::before {
    border-radius: 50%;
}

.radio-wrapper label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.radio-wrapper input:checked+label::after {
    transform: translateY(-50%) scale(1);
}

.radio-wrapper input:checked+label::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Buttons */
button,
.btn {
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Removed shimmer effect for buttons */
/*
button::before,
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

button:hover::before,
.btn:hover::before {
    left: 100%;
}
*/

button:hover,
.btn:hover {
    background: var(--secondary-gradient);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

table th,
table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--text-color);
}

table tr {
    transition: background-color 0.3s ease;
}

table tr:hover {
    background-color: var(--light-color);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.image-gallery img {
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-gallery .gallery-item {
    transition: all 0.3s ease;
}

.image-gallery .gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Events Scrolling */
.events-container {
    overflow-x: auto;
    width: 100%;
    height: 25vh;
}

.events-wrapper {
    display: flex;
    animation: scroll 20s linear infinite;
}

.event-item {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
}

.event-item img {
    width: auto;
    height: 25vh;
    display: block;
    border-radius: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.event-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.event-date {
    font-size: 0.9rem;
}

.event-item:hover .overlay {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-container {
    overflow-x: auto;
    width: 100%;
    height: 20vh;
    margin-bottom: 2rem;
}

.testimonials-wrapper {
    display: flex;
    animation: scroll 30s linear infinite;
}

.testimonial {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
    display: inline-block;
    width: 300px;
    background: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial p:first-child {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial p:last-child {
    font-weight: bold;
    color: var(--primary-color);
}

.values-container {
    overflow-x: auto;
    width: 100%;
    height: 20vh;
    margin-bottom: 2rem;
}

.values-wrapper {
    display: flex;
    animation: scroll 10s linear infinite;
}

.value {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
    display: inline-block;
    width: 250px;
    height: 18vh;
    background: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    overflow: hidden;
}

.value h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.park-description {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
    animation: fadeIn 0.6s ease-out;
}

.park-description p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-content ul {
    text-align: left;
    display: inline-block;
    margin-bottom: 1rem;
}

.about-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 0 0.5rem;
    }

    .menu-group {
        order: -1;
        margin-bottom: 0.5rem;
    }

    nav {
        padding: 0.5rem;
    }

    nav a {
        display: block;
        margin: 0.25rem 0;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    nav .lang {
        float: none;
        text-align: center;
        margin: 0.5rem 0;
    }

    nav .lang a {
        margin: 0 0.25rem;
    }

    section {
        padding: 1rem;
        margin: 1rem auto;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    main {
        padding: 0 0.5rem;
    }

    .container {
        padding: 20px 10px;
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    section h2 {
        font-size: 1.4rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    form input,
    form textarea,
    form select {
        padding: 0.6rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    button,
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .logo {
        height: 50px;
        transform: scale(1);
        order: -2;
    }

    .header-container {
        padding: 0 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        height: 50px;
        transform: scale(1.2);
        margin: 0.5rem 0;
        order: -2;
    }

    .menu-group {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .social-mobile {
        display: flex;
        order: 1;
    }

    .burger {
        display: block;
        order: 2;
    }

    .lang-btn {
        order: 3;
    }

    #nav {
        display: none;
    }

    #nav.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-gradient);
        z-index: 1001;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    #nav a {
        padding: 0.8rem 1rem;
        border-radius: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #nav a:last-child {
        border-bottom: none;
    }

    .social-links {
        display: none;
    }

    .social-links {
        margin-top: 5px;
    }

    .social {
        margin: 0 5px;
        font-size: 0.9rem;
    }

    footer {
        padding: 10px;
        text-align: center;
    }

    footer p {
        font-size: 0.9rem;
    }

    .events-container,
    .testimonials-container,
    .values-container {
        height: 15vh;
    }

    .event-item img,
    .testimonial,
    .value {
        height: 15vh;
    }

    .testimonial {
        width: 250px;
    }

    .value {
        width: 200px;
    }

    .image-gallery,
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.5rem;
    }

    .gallery-item img {
        height: 120px;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.5rem;
    }

    .park-description p {
        font-size: 1rem;
    }

    .about-content {
        padding: 1rem 0.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .logo {
        height: 60px;
        transform: scale(1.3);
    }

    .menu-group {
        order: initial;
        margin-bottom: 0;
    }

    .social-mobile {
        display: none;
    }

    #nav {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 1rem;
        box-shadow: none;
    }

    #nav a {
        display: inline-block;
        margin: 0 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        border-bottom: none;
    }

    .events-container,
    .testimonials-container,
    .values-container {
        height: 20vh;
    }

    .event-item img,
    .testimonial,
    .value {
        height: 20vh;
    }

    .image-gallery,
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 180px;
    }

    main {
        padding: 0 1rem;
    }

    .container {
        padding: 20px;
        padding-top: 100px;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}