/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

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

:root {
    /* Color Palette - Soft Pastels with Star Theme */
    --primary-peach: #FFD7BE;
    --secondary-lavender: #E8D5F2;
    --accent-gold: #F4D58D;
    --bg-cream: #FFFEF9;
    --text-navy: #2C3E50;
    --light-pink: #FFE5D9;
    --light-blue: #D4E4F7;
    --soft-green: #D8EFD3;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --shadow: rgba(44, 62, 80, 0.1);
    --shadow-hover: rgba(44, 62, 80, 0.15);
    
    /* Typography */
    --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-navy);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-navy);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--text-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
}

.star-icon {
    font-size: 1.8rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

.nav-menu a {
    color: var(--text-navy);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-peach);
    color: var(--text-navy);
}

.cta-nav {
    background: var(--accent-gold) !important;
    color: var(--text-navy) !important;
    font-weight: 600;
}

.cta-nav:hover {
    background: var(--primary-peach) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-navy);
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--secondary-lavender) 100%);
    overflow: hidden;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: var(--accent-gold);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.star:nth-child(3) { top: 60%; left: 15%; animation-delay: 2s; }
.star:nth-child(4) { top: 70%; left: 70%; animation-delay: 0.5s; }
.star:nth-child(5) { top: 30%; left: 50%; animation-delay: 1.5s; }
.star:nth-child(6) { top: 80%; left: 40%; animation-delay: 2.5s; }
.star:nth-child(7) { top: 15%; left: 30%; animation-delay: 3s; }
.star:nth-child(8) { top: 50%; left: 85%; animation-delay: 1.2s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-navy);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-gold);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-navy);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image-placeholder {
    margin-top: 3rem;
    max-width: 720px;
    height: 380px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.hero-image-placeholder::before,
.hero-image-placeholder::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.9;
    z-index: 0;
}

.hero-image-placeholder::before {
    width: 220px;
    height: 220px;
    left: -40px;
    top: 20px;
    background: radial-gradient(circle, rgba(244, 213, 141, 0.9) 0%, rgba(244, 213, 141, 0) 70%);
}

.hero-image-placeholder::after {
    width: 260px;
    height: 260px;
    right: -50px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 228, 247, 0.95) 0%, rgba(212, 228, 247, 0) 72%);
}

/* ========================================
   BUTTONS
   ======================================== */

.cta-button,
.cta-button-large,
.secondary-button,
.submit-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--text-navy);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.cta-button:hover,
.cta-button-large:hover,
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
    background: var(--primary-peach);
}

.cta-button-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

.secondary-button {
    background: var(--secondary-lavender);
    padding: 12px 30px;
    font-size: 1rem;
}

.secondary-button:hover {
    background: var(--primary-peach);
    transform: translateY(-2px);
}

/* ========================================
   QUICK INFO CARDS
   ======================================== */

.quick-info {
    padding: 80px 20px;
    background: var(--bg-cream);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

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

.info-card h3 {
    color: var(--text-navy);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-navy);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */

.about-preview {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-pink) 100%);
}

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

.about-text h2 {
    color: var(--text-navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-peach) 100%);
    text-align: center;
    overflow: hidden;
}

.stars-background-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-navy);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    position: relative;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--secondary-lavender) 0%, var(--primary-peach) 100%);
    text-align: center;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-navy);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-navy);
    opacity: 0.9;
}

/* ========================================
   PLACEHOLDERS
   ======================================== */

.hero-image-placeholder,
.about-image-placeholder,
.profile-image-placeholder,
.activity-image-placeholder,
.contact-image-placeholder,
.info-image-placeholder,
.calendar-placeholder,
.map-placeholder {
    background: var(--white);
    border-radius: 6px;
    border-color: #181818;
    box-shadow: 4px 4px 10px #949494;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image placeholders should not show a large white panel behind portrait photos */
.hero-image-placeholder,
.about-image-placeholder,
.profile-image-placeholder,
.activity-image-placeholder,
.contact-image-placeholder,
.info-image-placeholder {
    background: transparent;
    box-shadow: none;
}

.Image-style {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 6px;
}

.placeholder-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.hero-image-placeholder .placeholder-content,
.about-image-placeholder .placeholder-content,
.profile-image-placeholder .placeholder-content,
.activity-image-placeholder .placeholder-content,
.contact-image-placeholder .placeholder-content,
.info-image-placeholder .placeholder-content {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.hero-image-placeholder .placeholder-content .Image-style,
.about-image-placeholder .placeholder-content .Image-style,
.profile-image-placeholder .placeholder-content .Image-style,
.activity-image-placeholder .placeholder-content .Image-style,
.contact-image-placeholder .placeholder-content .Image-style,
.info-image-placeholder .placeholder-content .Image-style {
    width: auto;
    height: auto;
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    object-fit: contain;
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px #949494;
}

/* Hero image gets a custom "wow" treatment without white frame */
.hero-image-placeholder .placeholder-content {
    padding: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 28px;
}

.hero-image-placeholder .placeholder-content .Image-style {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center 42%;
    padding: 0;
    background: transparent;
    border-radius: 28px;
    box-shadow:
        0 22px 45px rgba(44, 62, 80, 0.22),
        0 8px 18px rgba(44, 62, 80, 0.12);
    transform: rotate(-1deg) scale(1.01);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-image-placeholder .placeholder-content::before {
    display: none;
}

.placeholder-content span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ========================================
   ABOUT FULL PAGE
   ======================================== */

.about-full {
    padding: 80px 20px;
}

.profile-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.profile-image-placeholder {
    height: 400px;
}

.about-image-placeholder {
    height: 340px;
}

/* Front page about image should fill the frame more visually */
.about-preview .about-image-placeholder .placeholder-content {
    padding: 0;
}

.about-preview .about-image-placeholder .placeholder-content .Image-style {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    background: transparent;
    padding: 0;
    border-radius: 10px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-section,
.values-section,
.activities-section,
.why-choose {
    margin-bottom: 80px;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.experience-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.experience-icon {
    font-size: 3rem;
    min-width: 60px;
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

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

.activities-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.activity-image-placeholder {
    height: 340px;
}

/* "Om mig" billeder må gerne fylde mere i deres bokse */
.about-full .profile-image-placeholder .placeholder-content,
.about-full .activity-image-placeholder .placeholder-content {
    padding: 0;
}

.about-full .profile-image-placeholder .placeholder-content .Image-style,
.about-full .activity-image-placeholder .placeholder-content .Image-style {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    background: transparent;
    padding: 0;
    border-radius: 10px;
}

.activities-list {
    list-style: none;
    margin: 20px 0;
}

.activities-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.activities-list li::before {
    content: "⭐";
    position: absolute;
    left: 0;
}

.highlight-text {
    background: var(--accent-gold);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 20px;
}

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

.why-item {
    text-align: center;
    padding: 30px;
}

.why-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.page-cta {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--secondary-lavender) 100%);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    margin-top: 60px;
}

.page-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ========================================
   PRACTICAL INFO PAGE
   ======================================== */

.practical-info {
    padding: 80px 20px;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.placeholder-text {
    font-style: italic;
    opacity: 0.7;
}

.info-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 40px;
}

.info-section.important {
    border-left: 5px solid var(--accent-gold);
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-content {
    line-height: 1.8;
}

.info-list {
    list-style: none;
    margin: 20px 0;
}

.info-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.info-note {
    background: var(--light-pink);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-gold);
}

.info-note-text {
    font-style: italic;
    color: var(--text-navy);
    opacity: 0.8;
}

.tip-box {
    background: var(--soft-green);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.important-text {
    color: var(--text-navy);
    font-size: 1.2rem;
}

.activities-showcase {
    margin: 20px 0;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.tag {
    background: var(--secondary-lavender);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--text-navy);
    margin-bottom: 10px;
}

.info-image-section {
    margin: 60px 0;
}

.info-image-placeholder {
    height: 360px;
}

.gallery-intro {
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.practical-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.carousel-stage {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    display: none;
    width: 100%;
    margin: 0;
    text-align: center;
}

.carousel-slide.is-active {
    display: block;
}

.carousel-photo-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 5px 20px var(--shadow);
    padding: 10px;
    max-width: 100%;
}

.carousel-photo-frame .Image-style {
    width: auto;
    height: auto;
    max-width: min(100%, 760px);
    max-height: 420px;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-button {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-navy);
    box-shadow: 0 4px 14px var(--shadow);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--shadow-hover);
    background: var(--primary-peach);
}

.carousel-dots {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-medium);
    cursor: pointer;
    padding: 0;
}

.carousel-dot.is-active {
    background: var(--accent-gold);
    transform: scale(1.15);
}

/* ========================================
   OPENING HOURS PAGE
   ======================================== */

.opening-hours {
    padding: 80px 20px;
}

.schedule-section {
    margin-bottom: 60px;
}

.schedule-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-row:hover {
    background: var(--primary-peach);
}

.schedule-row.friday {
    background: var(--light-pink);
}

.schedule-row.weekend {
    background: var(--gray-medium);
    opacity: 0.7;
}

.day {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.day-icon {
    font-size: 1.5rem;
}

.time {
    font-weight: 600;
    font-size: 1.1rem;
}

.vacation-section {
    margin-bottom: 60px;
}

.vacation-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.vacation-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.vacation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

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

.vacation-dates {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-navy);
    margin-bottom: 0.5rem;
}

.vacation-note {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 0;
}

.holidays-section {
    margin-bottom: 60px;
}

.holidays-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.holidays-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.holiday-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
}

.holiday-icon {
    font-size: 2rem;
}

.holiday-info strong {
    display: block;
    margin-bottom: 5px;
}

.holidays-note {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.additional-info {
    margin-bottom: 60px;
}

.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.info-box.important {
    border-left: 5px solid var(--accent-gold);
    background: var(--light-pink);
}

.calendar-section {
    margin-bottom: 60px;
}

.hours-contact {
    margin-top: 60px;
}

.contact-box {
    background: linear-gradient(135deg, var(--secondary-lavender) 0%, var(--primary-peach) 100%);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.contact-details {
    margin: 30px 0;
    font-size: 1.1rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.method-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.method-content h3 {
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--text-navy);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.method-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.contact-hours {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-hours h3 {
    margin-bottom: 15px;
}

.contact-hours p {
    margin-bottom: 10px;
}

.contact-image-placeholder {
    height: 300px;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-intro {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-navy);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(244, 213, 141, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label {
    font-weight: 400;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    margin-top: 10px;
}

.button-loading {
    display: none;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: -10px;
}

.form-success {
    background: var(--soft-green);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

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

.form-success h3 {
    color: var(--text-navy);
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-placeholder {
    height: 400px;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-address {
    font-weight: 600;
    margin: 15px 0;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-gold);
    font-weight: 600;
}

.map-link:hover {
    text-decoration: underline;
}

/* FAQ Links */
.faq-links {
    margin-top: 60px;
}

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

.faq-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
    background: var(--primary-peach);
}

.faq-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.faq-card h4 {
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-navy);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

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

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

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

.footer-bottom p {
    opacity: 0.6;
    margin-bottom: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.9s both;
}

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

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .about-content,
    .profile-section,
    .activities-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-cards,
    .values-grid,
    .why-grid,
    .vacation-grid,
    .holidays-list {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .hero-image-placeholder,
    .about-image-placeholder,
    .activity-image-placeholder,
    .info-image-placeholder {
        height: 260px;
    }

    .practical-carousel {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .carousel-button {
        justify-self: center;
    }

    .carousel-stage {
        min-height: 320px;
    }

    .hero-image-placeholder::before,
    .hero-image-placeholder::after {
        display: none;
    }

    .hero-image-placeholder .placeholder-content .Image-style {
        transform: none;
        border-radius: 20px;
    }
    
    .page-cta {
        padding: 40px 30px;
    }
    
    .contact-box {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 15px 40px;
    }

    .hero-image-placeholder,
    .about-image-placeholder,
    .activity-image-placeholder,
    .info-image-placeholder,
    .contact-image-placeholder,
    .profile-image-placeholder {
        height: 220px;
    }

    .carousel-stage {
        min-height: 250px;
    }

    .carousel-photo-frame {
        padding: 8px;
    }

    .carousel-photo-frame .Image-style {
        max-height: 240px;
    }

    .map-embed {
        height: 320px;
    }
    
    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .info-section,
    .schedule-card,
    .holidays-content,
    .contact-form-container {
        padding: 25px;
    }
}
