/* ==========================================================================
   Global Styles & Variables
   ========================================================================== */

:root {
    --water-blue: #1E90FF;
    --sunny-yellow: #FFD700;
    --bright-orange: #FF8C00;
    --pure-white: #FFFFFF;
    --tropical-green: #32CD32;
    --dark-blue: #0C4A8A;
    --light-blue: #87CEEB;
    --gradient-water: linear-gradient(135deg, #1E90FF 0%, #87CEEB 50%, #1E90FF 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark-blue);
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--water-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ==========================================================================
   Cookie Consent
   ========================================================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 74, 138, 0.95);
    color: var(--pure-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--sunny-yellow);
    text-decoration: underline;
}

.btn-accept {
    background: var(--sunny-yellow);
    color: var(--dark-blue);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-accept:hover {
    background: var(--bright-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--water-blue);
    text-transform: lowercase;
}

.logo:hover {
    color: var(--bright-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    font-weight: 600;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bright-orange);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--water-blue);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    padding: 0;
    width: 30px;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background: var(--water-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-water);
    background-size: 400% 400%;
    animation: gradientWave 15s ease infinite;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="3" fill="white" opacity="0.3"/><circle cx="300" cy="150" r="2" fill="white" opacity="0.3"/><circle cx="500" cy="80" r="4" fill="white" opacity="0.3"/><circle cx="700" cy="200" r="2" fill="white" opacity="0.3"/><circle cx="900" cy="120" r="3" fill="white" opacity="0.3"/><circle cx="1100" cy="180" r="2" fill="white" opacity="0.3"/></svg>');
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    color: var(--pure-white);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--sunny-yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: var(--bright-orange);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 3px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--water-blue);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.25rem;
}

.weather-widget {
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.weather-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.weather-icon {
    width: 30px;
    height: 30px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-decoration svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    fill: var(--pure-white);
}

/* ==========================================================================
   Attraktionen Section
   ========================================================================== */

.attraktionen {
    background: linear-gradient(to bottom, var(--pure-white) 0%, #F0F8FF 100%);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--water-blue);
}

.height-badge {
    display: inline-block;
    background: var(--bright-orange);
    color: var(--pure-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.813rem;
    font-weight: 600;
}

.tag-thrill {
    background: #FFE5E5;
    color: #D32F2F;
}

.tag-family {
    background: #E8F5E9;
    color: #2E7D32;
}

.tag-relax {
    background: #E3F2FD;
    color: #1976D2;
}

.tag-kids {
    background: #FFF9C4;
    color: #F57F17;
}

.tag-age {
    background: #F3E5F5;
    color: #7B1FA2;
}

/* ==========================================================================
   Zonen Section
   ========================================================================== */

.zonen {
    background: var(--pure-white);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.zone-card {
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--light-blue) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.zone-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.zone-kids {
    background: linear-gradient(135deg, var(--tropical-green) 0%, #90EE90 100%);
}

.zone-family {
    background: linear-gradient(135deg, var(--water-blue) 0%, #87CEEB 100%);
}

.zone-thrill {
    background: linear-gradient(135deg, var(--bright-orange) 0%, #FFA500 100%);
}

.zone-relax {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.zone-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.zone-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.zone-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.zone-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.zone-features {
    list-style: none;
}

.zone-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.zone-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--sunny-yellow);
}

/* ==========================================================================
   Parkplan Section
   ========================================================================== */

.parkplan {
    background: linear-gradient(to bottom, var(--pure-white) 0%, #F0F8FF 100%);
}

.map-container {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.park-map {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.map-legend h4 {
    margin-bottom: 1rem;
    color: var(--water-blue);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.map-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--water-blue);
    flex-shrink: 0;
}

/* ==========================================================================
   Preise Section
   ========================================================================== */

.preise {
    background: var(--pure-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 3px solid transparent;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--water-blue);
}

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

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--sunny-yellow);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-orange);
    font-family: 'Fredoka One', cursive;
}

.price-period {
    color: #666;
    font-size: 0.938rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tropical-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-info {
    text-align: center;
    color: #666;
    padding: 1.5rem;
    background: #F0F8FF;
    border-radius: 15px;
}

/* ==========================================================================
   Shows Section
   ========================================================================== */

.shows {
    background: linear-gradient(135deg, #E3F2FD 0%, #FFFDE7 100%);
}

.schedule-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-card {
    display: flex;
    gap: 2rem;
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--water-blue);
}

.schedule-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.schedule-card.highlight {
    border-left-color: var(--bright-orange);
    background: linear-gradient(to right, #FFF8E1 0%, var(--pure-white) 100%);
}

.schedule-time {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--water-blue);
    min-width: 100px;
    text-align: center;
}

.schedule-card.highlight .schedule-time {
    color: var(--bright-orange);
}

.schedule-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.schedule-content p {
    color: #666;
    margin-bottom: 0.75rem;
}

.schedule-location {
    font-size: 0.938rem;
    color: var(--water-blue);
    font-weight: 600;
}

/* ==========================================================================
   Gastronomie Section
   ========================================================================== */

.gastronomie {
    background: var(--pure-white);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.restaurant-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.restaurant-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.restaurant-content {
    padding: 1.5rem;
}

.restaurant-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bright-orange);
}

.restaurant-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.restaurant-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--water-blue);
    font-weight: 600;
}

.restaurant-hours svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Kabinen Section
   ========================================================================== */

.kabinen {
    background: linear-gradient(to bottom, #F0F8FF 0%, var(--pure-white) 100%);
}

.cabins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cabin-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 3px solid #E0E0E0;
}

.cabin-card:hover {
    transform: translateY(-10px);
    border-color: var(--water-blue);
}

.cabin-card.premium {
    border-color: var(--sunny-yellow);
    background: linear-gradient(135deg, #FFFAF0 0%, var(--pure-white) 100%);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunny-yellow);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.cabin-card h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cabin-price {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-orange);
    margin-bottom: 1.5rem;
    font-family: 'Fredoka One', cursive;
}

.cabin-features {
    list-style: none;
}

.cabin-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.cabin-features li:last-child {
    border-bottom: none;
}

.cabin-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tropical-green);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ==========================================================================
   Booking Section
   ========================================================================== */

.booking {
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--light-blue) 100%);
    color: var(--pure-white);
}

.booking .section-title,
.booking .section-subtitle {
    color: var(--pure-white);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--water-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group a {
    color: var(--water-blue);
    text-decoration: underline;
}

.total-price {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-orange);
    padding: 1.5rem;
    background: #FFF8E1;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-family: 'Fredoka One', cursive;
}

/* ==========================================================================
   Service Section
   ========================================================================== */

.service {
    background: var(--pure-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: #F0F8FF;
    border-radius: 15px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--water-blue);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* ==========================================================================
   Kontakt Section
   ========================================================================== */

.kontakt {
    background: linear-gradient(to bottom, #F0F8FF 0%, var(--pure-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--water-blue);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    width: 30px;
    height: 30px;
    color: var(--bright-orange);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item a {
    color: var(--water-blue);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.parking-info {
    background: #E8F5E9;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.parking-info h4 {
    margin-bottom: 0.75rem;
    color: var(--tropical-green);
}

.contact-form {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--dark-blue);
    color: var(--pure-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    color: var(--sunny-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-address {
    font-size: 0.938rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sunny-yellow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

    .park-map {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }

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

    .attractions-grid,
    .zones-grid,
    .pricing-grid,
    .cabins-grid,
    .restaurant-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        flex-direction: column;
        gap: 1rem;
    }

    .schedule-time {
        text-align: left;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .weather-info {
        font-size: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 360px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 359px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--water-blue);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--bright-orange);
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #F0F8FF;
    border-radius: 10px;
    border-left: 4px solid var(--water-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--light-blue) 100%);
    border-radius: 15px;
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
}

.team-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.team-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--water-blue);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.department-card {
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.department-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--water-blue);
}

.department-card p {
    color: #666;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.facility-item {
    text-align: center;
    padding: 2rem;
    background: #F0F8FF;
    border-radius: 15px;
    transition: var(--transition);
}

.facility-item:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.facility-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.facility-item p {
    color: #666;
}

.sustainability-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sustainability-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--tropical-green);
}

.sustainability-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.eco-item {
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.eco-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--tropical-green);
}

.eco-item p {
    color: #666;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.award-card {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.award-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--water-blue);
}

.award-card p {
    color: #666;
    font-size: 0.938rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--water-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--bright-orange);
    text-align: center;
    padding-top: 0.5rem;
}

.timeline-content {
    flex: 1;
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--water-blue);
}

.timeline-content p {
    color: #666;
}

/* ==========================================================================
   Legal Pages Styles
   ========================================================================== */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--water-blue);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--bright-orange);
}

.legal-content p,
.legal-content li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    list-style-type: disc;
}

.legal-content ol li {
    list-style-type: decimal;
}

.legal-content a {
    color: var(--water-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--bright-orange);
}

.legal-content strong {
    color: #333;
    font-weight: 700;
}

.legal-intro {
    background: #F0F8FF;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--water-blue);
}

.last-updated {
    text-align: center;
    color: #999;
    font-size: 0.938rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes wave {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    75% {
        transform: translateY(10px) translateX(-5px);
    }
}

.attraction-card:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.zone-icon {
    animation: float 3s ease-in-out infinite;
}

.zone-card:nth-child(2) .zone-icon {
    animation-delay: 0.5s;
}

.zone-card:nth-child(3) .zone-icon {
    animation-delay: 1s;
}

.zone-card:nth-child(4) .zone-icon {
    animation-delay: 1.5s;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-year {
        flex: 0 0 auto;
        text-align: left;
    }
}
