/* ================================
   SELF-HOSTED FONTS
   ================================ */
@font-face {
    font-family: 'Fraunces';
    src: url('../fonts/fraunces-latin.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src: url('../fonts/fraunces-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-latin.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ================================
   CSS VARIABLES
   ================================ */
:root {
    /* Forest Greens */
    --forest-lightest: #f0f7f2;
    --forest-light: #d4e8da;
    --forest-main: #3a6f4c;
    --forest-dark: #274e35;
    --forest-darkest: #1a3323;
    
    /* Accent */
    --accent: #d4a843;
    --accent-light: #fef3d0;
    
    /* Neutrals */
    --text-dark: #1c2b20;
    --text-muted: #5a6f5e;
    --white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Misc */
    --radius: 12px;
    --shadow: 0 4px 20px rgba(26, 51, 35, 0.1);
    --transition: 200ms ease;
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--forest-lightest);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 var(--space-md);
    color: var(--forest-darkest);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p {
    margin: 0 0 var(--space-md);
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Scroll offset for fixed navigation */
section[id],
footer[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 900px) {
    section[id],
    footer[id] {
        scroll-margin-top: 70px;
    }
}

/* ================================
   DESKTOP NAV
   ================================ */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: padding var(--transition);
}

.desktop-nav.scrolled {
    padding: var(--space-sm) var(--space-xl);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest-dark);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--forest-dark);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--forest-dark);
}

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

@media (max-width: 900px) {
    .desktop-nav { display: none; }
}

/* ================================
   LANGUAGE TOGGLE
   ================================ */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.lang-btn:hover {
    color: var(--forest-dark);
}

.lang-btn.active {
    color: var(--forest-dark);
    background: var(--forest-light);
}

.lang-divider {
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.5;
}

.lang-toggle-mobile {
    position: fixed;
    top: var(--space-md);
    right: 72px;
    z-index: 1001;
    background: var(--white);
    padding: 6px 10px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

@media (min-width: 901px) {
    .lang-toggle-mobile { display: none; }
}

/* ================================
   MOBILE NAV
   ================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 1001;
}

@media (max-width: 900px) {
    .mobile-nav { display: block; }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--forest-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   OVERLAY & MOBILE MENU
   ================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 51, 35, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-main));
    padding: 80px var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-link {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: padding-left var(--transition);
}

.mobile-link:hover {
    padding-left: var(--space-md);
}

/* ================================
   SECTIONS BASE
   ================================ */
section {
    padding: var(--space-3xl) var(--space-xl);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.section-label-hero {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: none;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(240, 247, 242, 0.95) 0%, rgba(212, 232, 218, 0.95) 100%); */
    background: rgba(212, 232, 218, 0.71);
    z-index: 1;
    /* opacity: 0.55; */
}

.hero-background picture {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
    isolation: isolate;
}

.hero-discount-strip {
    display: inline-flex;
    padding: 0.3rem 0.6rem;
    background: rgba(12, 30, 20, 0.46);
    border-radius: 6px;
    margin-bottom: var(--space-sm);
}

.hero-discount-strip .hero-discount {
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: calc(var(--radius) * 1.5);
    background: linear-gradient(160deg, rgba(26, 51, 35, 0.35), rgba(26, 51, 35, 0.1) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--forest-dark);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    color: var(--forest-dark);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.hero-discount {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-main));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(58, 111, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 111, 76, 0.4);
}

.btn-secondary {
    background: var(--white);
    border-color: var(--forest-main);
    color: var(--forest-main);
}

.btn-secondary:hover {
    background: var(--forest-main);
    color: var(--white);
}

.btn-small {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
}

/* ================================
   PHOTO PLACEHOLDERS
   ================================ */
.photo-placeholder {
    background: linear-gradient(135deg, var(--forest-light), var(--forest-lightest));
    border: 2px dashed var(--forest-main);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--space-lg);
    min-height: 200px;
}

.large-placeholder {
    min-height: 300px;
    font-size: 1.1rem;
}


.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--forest-light);
    max-width: 100%;
    box-sizing: border-box;
    margin: var(--space-2xl) auto;
    aspect-ratio: 1606 / 1400;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.map-container picture {
    display: block;
    width: 100%;
    height: 100%;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .map-container {
        aspect-ratio: auto;
    }
    
    .map-container picture {
        height: auto;
    }
}

@media (max-width: 768px) {
    .photo-placeholder {
        min-height: 150px;
        font-size: 0.85rem;
    }

    .large-placeholder {
        min-height: 200px;
        font-size: 1rem;
    }

    .map-placeholder {
        min-height: 250px;
        font-size: 1rem;
    }

    .tile-photos-grid {
        gap: 4px;
    }
}

/* ================================
   O KEMPU SECTION
   ================================ */
.o-kempu {
    background: var(--white);
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .text-content p {
        font-size: 1rem;
    }
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.tiles-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .tiles-grid {
        grid-template-columns: 1fr;
    }
    
    .tiles-grid-4 {
        grid-template-columns: 1fr;
    }
}

.tile {
    background: var(--forest-lightest);
    padding: var(--space-xl);
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.tile-with-photo {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.tile-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

/* Overlay button at bottom of image */
.tile-with-photo .tile-action {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    z-index: 10;
}

.tile-with-photo .tile-action .btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tile-with-photo .tile-action .btn:hover {
    background: var(--forest-main);
    border-color: var(--forest-main);
    color: var(--white);
}

/* Contact button - blue hover */
.tile-with-photo .tile-action .btn-contact:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: var(--white);
}

/* Text overlay for accommodation tiles */
.tile-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tile-text-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.tile-text-overlay p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: var(--space-sm) var(--space-md);
    border-radius: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments for accommodation overlay */
@media (max-width: 768px) {
    .tile-text-overlay {
        padding: var(--space-md);
        gap: 4px;
    }
    
    .tile-text-overlay h3 {
        font-size: 1.1rem;
    }
    
    .tile-text-overlay p {
        font-size: 0.8rem;
        line-height: 1.3;
        padding: var(--space-sm);
    }
}

.tile-photo picture,
.tile-photo picture img,
.tile-photo img {
    width: 100%;
    height: 100%;
    display: block;
}

.tile-photo picture img,
.tile-photo img {
    object-fit: cover;
}

.tile-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px dashed var(--forest-main);
}

.tile-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-main));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.tile h3 {
    margin-bottom: var(--space-sm);
}

.tile p {
    font-size: 0.9rem;
    margin: 0;
    margin-bottom: var(--space-md);
}

/* ================================
   UBYTOVANI SECTION
   ================================ */
.ubytovani {
    background: var(--forest-lightest);
}

.ubytovani .tile {
    background: var(--white);
}

.tile-action {
    margin-top: var(--space-lg);
}

/* ================================
   SLUŽBY A AKTIVITY SECTION
   ================================ */
.sluzby-a-aktivity {
    background: var(--white);
}

.large-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
    .large-tiles-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.large-tile {
    background: var(--forest-lightest);
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding-bottom: var(--space-2xl);
}

.large-tile h3,
.large-tile p {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}

.large-tile h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.large-tile p {
    margin-bottom: var(--space-lg);
}

.large-photo {
    aspect-ratio: 16/9;
}

.tile-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /* aspect-ratio: 16/9; */
    margin-bottom: var(--space-lg);
}

.tile-photo-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
}

.tile-photo-item picture,
.tile-photo-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.small-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    margin-bottom: var(--space-lg);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.small-icons .icon-item {
    padding: var(--space-sm);
}

.small-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ================================
   KIOSK SECTION
   ================================ */
.kiosk {
    background: var(--forest-lightest);
}

.kiosk-hours {
    margin: var(--space-2xl) 0;
}

.kiosk-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    justify-items: center;
}

.kiosk-hours-card {
    width: 100%;
    background: linear-gradient(180deg, rgba(229, 251, 226, 0.95), rgba(211, 243, 227, 0.9));
    border: 1px solid rgba(58, 111, 76, 0.2);
    border-radius: 28px;
    padding: var(--space-lg);
    box-shadow: 0 12px 24px rgba(26, 51, 35, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-height: 330px;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.kiosk-hours-season {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--forest-darkest);
    margin-bottom: var(--space-sm);
}

.kiosk-hours-period {
    font-weight: 600;
    font-size: 1rem;
    color: var(--forest-dark);
    margin-bottom: var(--space-sm);
}

.kiosk-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    flex-grow: 1;
}

.kiosk-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.kiosk-hours-list li span:first-child {
    opacity: 0.85;
    text-transform: none;
}

.kiosk-hours-list li span:last-child {
    font-weight: 700;
}

.kiosk-hours-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 28px rgba(26, 51, 35, 0.2);
}

@media (max-width: 768px) {
    .kiosk-hours-card {
        min-height: auto;
        padding: var(--space-md);
    }

    .kiosk-hours-list li {
        font-size: 0.85rem;
    }
}

/* Kiosk Photos Grid */
.kiosk-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.kiosk-photo-item {
    background: var(--forest-lightest);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 3/4;
}

.kiosk-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.kiosk-photo-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.kiosk-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .kiosk-photos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ================================
   MAPA SECTION
   ================================ */
.mapa {
    background: var(--white);
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.skupiny-a-akce .icons-grid {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 900px) {
    .skupiny-a-akce .icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skupiny-a-akce .icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-item {
    text-align: center;
    padding: var(--space-lg);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--forest-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform var(--transition);
}

.icon-item:hover .icon-circle {
    transform: scale(1.1);
}

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

/* ================================
   SKUPINY A AKCE SECTION
   ================================ */
.skupiny-a-akce {
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-main));
    color: var(--white);
}

.skupiny-a-akce .section-label {
    color: var(--accent-light);
}

.skupiny-a-akce h2 {
    color: var(--white);
}

.skupiny-a-akce .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.skupiny-a-akce .section-header p a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.skupiny-a-akce .section-header p a:hover {
    color: var(--accent-light);
}

.skupiny-a-akce .icon-circle {
    background: rgba(255, 255, 255, 0.15);
}

.skupiny-a-akce .icon-item span {
    color: var(--white);
}

/* Skupiny a akce Photos Grid */
.events-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.events-photo-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 3/4;
}

.events-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.events-photo-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.events-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .events-photos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ================================
   SLEDUJTE NÁS SECTION
   ================================ */
.sledujte-nas {
    background: var(--forest-lightest);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (max-width: 600px) {
    .social-buttons {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }
}

.social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    justify-content: center;
}

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

.facebook-btn {
    background: #1877f2;
    color: var(--white);
}

.facebook-btn:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
}

/* ================================
   DOKUMENTY SECTION
   ================================ */
.dokumenty {
    background: var(--white);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1200px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

.document-tile {
    background: var(--forest-lightest);
    padding: var(--space-xl);
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    cursor: pointer;
}

.document-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: var(--forest-light);
}

.document-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.document-tile h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--forest-darkest);
}

.document-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
   OLD GALLERY SECTION - CAROUSEL (REMOVED)
   ================================ */
.gallery {
    background: var(--white);
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--forest-light);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--forest-dark);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: var(--space-md);
}

.carousel-btn-next {
    right: var(--space-md);
}

.carousel-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--white);
}

.carousel-counter {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

@media (max-width: 600px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .carousel-btn-prev {
        left: var(--space-sm);
    }
    
    .carousel-btn-next {
        right: var(--space-sm);
    }
    
    .carousel-dots {
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* ================================
   FOOTER / KONTAKT SECTION
   ================================ */
.footer {
    background: var(--forest-darkest);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
    text-align: center;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.contact-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ================================
   PAYMENT LOGOS - OVERSCROLL REVEAL
   ================================ */
.payment-logos-reveal {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1rem 1.25rem;
    margin-top: -1px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.payment-logos:hover {
    opacity: 0.7;
}

.payment-logos img {
    height: 24px;
    width: auto;
}

@media (max-width: 600px) {
    .payment-logos {
        gap: 1.5rem;
    }
    .payment-logos img {
        height: 20px;
    }
}
