/* --- PROMĚNNÉ --- */
:root {
    --primary-lime: #E3FF04;
    --dark-green: #1A2406;
    --white: #FFFFFF;
    --bg-light: #F9F9F7;
    --body-text: #4A4A4A;
    --font-main: 'Archivo', sans-serif;
    --header-height: 100px;
    --scroll-offset: 80px;
}

/* --- RESET & ZÁKLAD --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: var(--scroll-offset);
}
body { 
    font-family: var(--font-main); 
    color: var(--dark-green); 
    line-height: 1.6; 
    background: var(--white); 
    overflow-x: hidden; 
    width: 100%;
}

/* --- KONTEJNER --- */
.container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding-left: 16px; 
    padding-right: 16px;
    width: 100%;
}

@media (min-width: 768px) {
    .container { 
        padding-left: 64px; 
        padding-right: 64px; 
    }
}

/* --- ZÁKLADNÍ SEKCE --- */
.section-padding { padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 992px) {
    .section-padding { padding-top: 112px; padding-bottom: 112px; }
}

.section-padding-contact { padding-top: 80px; padding-bottom: 0; }
@media (min-width: 992px) {
    .section-padding-contact { padding-top: 112px; padding-bottom: 0; }
}

.bg-light { background-color: var(--bg-light); width: 100%; }
.bg-dark { background-color: var(--dark-green); width: 100%; }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* --- HEADER & NAVBAR --- */
#main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1100; padding: 20px 0; }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 16px; }
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    padding: 12px 12px 12px 24px; 
    border-radius: 100px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    position: relative;
    z-index: 1200;
}
.navbar.scrolled { background: var(--white); padding: 12px 12px 12px 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.logo { text-decoration: none; color: var(--dark-green); font-size: 18px; font-weight: 800; flex-shrink: 0; }
.nav-menu-desktop { display: flex; gap: 24px; }
.nav-menu-desktop a { text-decoration: none; color: var(--dark-green); font-weight: 600; font-size: 15px; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav-menu-desktop a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--dark-green); transition: width 0.3s ease; }
.nav-menu-desktop a:hover::after { width: 100%; }

.mobile-only { display: none; }

/* --- BUTTONS --- */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn { display: inline-flex; align-items: center; text-decoration: none; font-weight: 600; border-radius: 50px; transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1); border: none; cursor: pointer; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-primary { background: var(--primary-lime); color: var(--dark-green); padding: 6px 20px 6px 6px; gap: 12px; }
.btn-icon { width: 40px; height: 40px; background: var(--dark-green); border-radius: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-icon img { width: 20px; height: 20px; }
.icon-white { filter: brightness(0) invert(1); }

/* --- MENU TOGGLE --- */
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background: rgba(26, 36, 6, 0.05); 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    position: relative; 
    z-index: 1300; 
    transition: background 0.3s ease; 
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--dark-green); margin: 2.5px 0; transition: all 0.3s ease-in-out; }

@media (max-width: 991px) {
    .btn-nav-call .btn-text { display: none; }
    .btn-nav-call { padding: 6px; } 
    .nav-menu-desktop { display: none; }
    .menu-toggle { display: flex; }
    .mobile-hide { display: none; }
    .mobile-only { display: inline; }
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; } 
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
#hero { min-height: 100vh; padding-top: var(--header-height); background: linear-gradient(rgba(26, 36, 6, 0.5), rgba(26, 36, 6, 0.7)), url('img/kemp-u-hedviky-chatka.webp') center/cover; display: flex; flex-direction: column; justify-content: center; position: relative; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.anim-fade { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.anim-fade-widget { opacity: 0; animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 1.1s; }
.hero-grid { width: 100%; padding-bottom: 100px; display: flex; flex-direction: column; }
h1 { font-size: clamp(40px, 8vw, 80px); line-height: 1.1; color: var(--white); font-weight: 800; }
.text-outline { color: transparent; -webkit-text-stroke: 1px var(--white); }
.text-outline-dark { color: transparent; -webkit-text-stroke: 1px var(--dark-green); }
@media (min-width: 768px) { .text-outline { -webkit-text-stroke: 2px var(--white); } .text-outline-dark { -webkit-text-stroke: 2px var(--dark-green); } }
.hero-text { margin: 24px 0 32px; color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; max-width: 650px; }
.badge { display: inline-block; background: var(--primary-lime); padding: 8px 16px; border-radius: 50px; font-weight: 600; margin-bottom: 16px; font-size: 14px; color: var(--dark-green); }
.badge-hero { background: rgba(255, 255, 255, 0.2); color: var(--white); backdrop-filter: blur(8px); }
.btn-outline { padding: 14px 28px; color: var(--white); border: 2px solid var(--white); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* --- GOOGLE WIDGET --- */
.hero-footer { display: flex; justify-content: flex-end; position: absolute; bottom: 80px; right: 64px; }
.google-reviews-widget { display: flex; align-items: center; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(12px); border-radius: 16px; padding: 12px 18px; gap: 14px; border: 1px solid rgba(255,255,255,0.1); text-decoration: none; transition: 0.3s ease; }
.google-reviews-widget:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.2); }
.google-icon-bg { width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviews-top { display: flex; align-items: center; gap: 8px; line-height: 1; margin-bottom: 4px; }
.rating-number { color: var(--white); font-weight: 800; font-size: 18px; }
.stars-row { display: flex; gap: 4px; align-items: center; }
.rating-count { color: var(--white); font-size: 13px; font-weight: 400; display: block; line-height: 1; }

@media (max-width: 767px) {
    .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-btns { justify-content: center; }
    .hero-footer { position: relative; bottom: auto; right: auto; margin-top: 40px; justify-content: center; }
}

/* --- TICKER --- */
.ticker { background: var(--primary-lime); padding: 18px 0; overflow: hidden; position: absolute; bottom: 0; left: 0; width: 100%; }
.ticker-content { display: inline-block; animation: slide 40s linear infinite; white-space: nowrap; }
.ticker-content span { font-weight: 800; padding: 0 25px; text-transform: uppercase; font-size: 16px; color: var(--dark-green); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- INFO CARDS --- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; width: 100%; }
.info-card { 
    background: var(--white); 
    padding: 40px 32px; 
    border-radius: 28px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    position: relative; 
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    width: 100%; 
    border: 1px solid transparent;
}
.card-icon-wrapper { width: 64px; height: 64px; background: var(--primary-lime); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.card-icon-wrapper-small { width: 44px; height: 44px; background: var(--primary-lime); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; }
.info-card-featured { background: linear-gradient(145deg, #ffffff 0%, #f4f6e8 100%); border: 2px solid var(--primary-lime); box-shadow: 0 20px 40px rgba(26, 36, 6, 0.08); transform: scale(1.02); z-index: 2; }
.featured-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--dark-green); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.price-wrapper .price { font-size: 42px; font-weight: 800; display: block; color: var(--dark-green); line-height: 1; }
.status-pill { display: inline-block; margin: 0 auto 16px; padding: 4px 12px; background: rgba(26, 36, 6, 0.05); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--dark-green); }
.info-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #eee; }
.info-row:last-child { border-bottom: none; }

/* --- TABULKY CENÍKU --- */
.pricing-tables-container { margin-top: 64px; display: flex; flex-direction: column; gap: 32px; }
.pricing-block { background: var(--white); border-radius: 28px; padding: 32px; width: 100%; }
.table-header-box { margin-bottom: 24px; }
.table-header-box h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.table-header-box p { font-size: 14px; opacity: 0.7; }

.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }
.custom-table { width: 100%; border-collapse: collapse; min-width: 600px; text-align: left; }
.custom-table th { background: var(--dark-green); color: var(--white); padding: 16px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.custom-table td { padding: 16px; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 16px; }
.custom-table tr:last-child td { border-bottom: none; }
.custom-table tr:nth-child(even) { background: rgba(26, 36, 6, 0.02); }

.table-footer-notes { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.promo-tag { background: var(--primary-lime); color: var(--dark-green); padding: 6px 14px; border-radius: 50px; font-weight: 800; font-size: 14px; }

.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 992px) { .grid-2-col { grid-template-columns: 1fr 1fr; } }

/* --- FOOLPROOF PRICING STYLES --- */
.foolproof-list { display: flex; flex-direction: column; gap: 16px; }
.accommodation-item { display: flex; align-items: center; gap: 15px; padding: 12px; background: #fff; border-radius: 12px; border: 1px solid #eee; transition: 0.3s ease; }
.acc-icon { font-size: 24px; width: 45px; height: 45px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; border-radius: 10px; flex-shrink: 0; }
.acc-details { flex-grow: 1; }
.acc-details strong { display: block; font-size: 15px; }
.acc-details span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #4a4a4a; opacity: 0.8; font-weight: 600; padding-top: 4px;}
.acc-price { font-weight: 800; font-size: 18px; }
.service-row-note { margin-top: 12px; font-size: 14px; padding: 16px; background: rgba(227, 255, 4, 0.15); border-radius: 12px; border-left: 4px solid var(--primary-lime); }
.event-banner { background: #fdfef0; border: 2px solid var(--primary-lime); border-radius: 16px; padding: 20px; margin-bottom: 10px; }
.event-date { display: inline-block; background: var(--dark-green); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 15px; }
.event-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.event-row:not(:last-child) { border-bottom: 1px solid rgba(26, 36, 6, 0.1); }
.event-info strong { display: block; font-size: 15px; }
.event-info span { font-size: 12px; opacity: 0.7; }
.event-price { font-weight: 800; font-size: 18px; }
.own-accommodation { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.school-trips { background: var(--dark-green); color: var(--white); padding: 20px; border-radius: 16px; display: flex; justify-content: space-between; align-items: center; }
.school-content strong { font-size: 18px; display: block; }
.school-content p { font-size: 13px; opacity: 0.8; }
.school-price { font-size: 24px; font-weight: 800; color: var(--primary-lime); }
.school-price span { font-size: 14px; color: var(--white); font-weight: 400; }

/* --- GRID LAYOUTY --- */
.grid-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; width: 100%; }
@media (min-width: 992px) {
    .grid-layout { grid-template-columns: 1fr 1fr; gap: 80px; }
    .grid-layout.reverse { direction: rtl; }
    .grid-layout.reverse .content { direction: ltr; }
    .sticky-column { position: sticky; top: calc(var(--header-height) + 20px); height: fit-content; }
}

.image-box { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; width: 100%; }
.image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shadow-img { box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; }

.equipment-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px; width: 100%; }
@media (min-width: 480px) { .equipment-grid { grid-template-columns: 1fr 1fr; } }
.item { background: var(--bg-light); padding: 16px 20px; border-radius: 20px; transition: transform 0.3s ease; width: 100%; }
.item:hover { transform: translateY(-5px); }
.item strong { display: block; font-size: 16px; margin-bottom: 2px; }
.item p { font-size: 14px; line-height: 1.4; }
.item .card-icon-wrapper-small { margin-bottom: 12px; }

.white-card { background: var(--white); padding: 32px; border-radius: 24px; margin-top: 20px; width: 100%; box-shadow: 0 8px 25px rgba(0,0,0,0.04); }
.wide-item { display: flex; align-items: flex-start; gap: 24px; text-align: left; }
.wide-item-text strong { display: block; font-size: 18px; color: var(--dark-green); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- DUÁLNÍ BANNERY (RELAX & MAPA) --- */
.dual-banners-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 64px;
    width: 100%;
}

.banner-box {
    position: relative;
    border-radius: 28px;
    padding: 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(26, 36, 6, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.chill-box {
    background: linear-gradient(135deg, #ffffff 0%, #f4f6e8 100%);
    border: 1px solid rgba(227, 255, 4, 0.3);
}

.map-teaser-box { background: var(--white); }

.banner-content { position: relative; z-index: 2; max-width: 85%; }
.banner-content h3 { font-size: 28px; margin-bottom: 12px; line-height: 1.2; }
.banner-content p { font-size: 15px; opacity: 0.8; margin-bottom: 24px; }

.badge-mini { 
    display: inline-block; 
    padding: 8px 16px; 
    background: var(--primary-lime); 
    color: var(--dark-green); 
    border-radius: 50px; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 16px; 
}

.banner-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.tag-item {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.btn-sm-custom { padding: 4px 16px 4px 4px !important; font-size: 14px; }
.btn-icon-small {
    width: 32px;
    height: 32px;
    background: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.btn-icon-small img { width: 16px; height: 16px; }

.banner-bg-img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 220px;
    height: 220px;
    opacity: 0.2;
    transform: rotate(-10deg);
    transition: 0.5s ease;
    z-index: 1;
    pointer-events: none;
}
.map-teaser-box:hover .banner-bg-img { transform: rotate(0deg) scale(1.1); opacity: 0.4; }
.banner-bg-img img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 991px) {
    .dual-banners-row { grid-template-columns: 1fr; }
    .banner-box { padding: 32px; min-height: auto; }
}

/* --- REELS --- */
.reels-container { margin-top: 64px; }
.reels-title { font-size: 28px; font-weight: 800; margin-bottom: 32px; text-align: center; }
.reels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }

.reel-card { 
    aspect-ratio: 9/16; 
    background: var(--dark-green); 
    border-radius: 24px; 
    overflow: hidden; 
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.reel-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.reel-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reel-overlay span {
    width: 0; height: 0; 
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--white);
    margin-left: 4px;
}

.reel-card.playing .reel-overlay { opacity: 0; }
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9); }
.reel-card.playing video { filter: brightness(1); }

@media (max-width: 991px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
    .reels-grid { display: flex; overflow-x: auto; padding-bottom: 20px; gap: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .reels-grid::-webkit-scrollbar { display: none; }
    .reel-card { flex: 0 0 75%; scroll-snap-align: center; }
}

.reel-badge { position: absolute; top: 16px; left: 16px; z-index: 5; margin-bottom: 0; pointer-events: none; }

/* RESPEKT SEKCE */
.respect-grid { display: grid; grid-template-columns: 1fr; gap: 40px; width: 100%; }
@media (min-width: 992px) { .respect-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.respect-cards { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.respect-card { display: flex; align-items: flex-start; gap: 20px; background: rgba(255, 255, 255, 0.05); padding: 24px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; }
.respect-card.highlight-border { border-color: var(--primary-lime); }
.respect-icon { font-size: 24px; background: rgba(255, 255, 255, 0.1); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.respect-info strong { display: block; color: var(--white); font-size: 18px; margin-bottom: 4px; }
.respect-info p { color: var(--white); opacity: 0.8; }

/* KONTAKT */
.contact-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin: 48px 0; }
.contact-card-link { text-decoration: none; color: inherit; transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
.contact-card-link:hover { transform: translateY(-8px); }
.contact-card { background: var(--white); padding: 40px 30px; border-radius: 32px; height: 100%; display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(26, 36, 6, 0.05); }
.contact-card-link:hover .contact-card { border-color: var(--primary-lime); box-shadow: 0 20px 40px rgba(26, 36, 6, 0.08); }
.contact-card strong { font-size: 20px; margin-bottom: 8px; }
.contact-card p { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.card-note { font-size: 12px; color: var(--body-text); opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: auto; }
.map-full-width { width: 100%; display: block; line-height: 0; }
.map-full-width iframe { display: block; vertical-align: bottom; }

/* FOOTER */
.main-footer { padding: 32px 0; width: 100%; }
.footer-bottom-flex { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; color: var(--white); font-size: 14px; }
@media (min-width: 768px) { .footer-bottom-flex { flex-direction: row; justify-content: space-between; } }
.designer-signature a { color: var(--primary-lime); text-decoration: none; font-weight: 600; }

/* MOBILE MENU OVERLAY */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--white); transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0); z-index: 1150; display: flex; justify-content: center; align-items: center; }
.mobile-overlay.active { right: 0; }
.nav-menu-mobile { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.nav-menu-mobile a { font-size: 28px; text-decoration: none; color: var(--dark-green); font-weight: 800; }
.image-label-overlay { position: absolute; bottom: 16px; left: 16px; background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(4px); padding: 8px 16px; border-radius: 50px; color: var(--white); font-size: 14px; font-weight: 600; pointer-events: none; z-index: 5; }

/* VÝLETY */
.trips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.trip-card { background: var(--white); border-radius: 24px; overflow: hidden; transition: 0.3s ease; }
.trip-card:hover { transform: translateY(-8px); }
.trip-img { width: 100%; height: 200px; overflow: hidden; }
.trip-img img { width: 100%; height: 100%; object-fit: cover; }
.trip-content { padding: 24px; }
.trip-content h3 { font-size: 20px; margin-bottom: 12px; }
.trip-content p { font-size: 14px; color: var(--body-text); margin-bottom: 20px; }
.trip-tag { display: inline-block; padding: 4px 12px; background: var(--bg-light); border-radius: 50px; font-size: 12px; font-weight: 600; }

/* MAP MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 36, 6, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: modalZoom 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-lime);
    font-size: 60px;
    font-weight: 400;
    cursor: pointer;
    line-height: 0.5;
    transition: transform 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-close { top: 20px; right: 20px; font-size: 50px; }
    .modal-content { max-width: 100%; }
}

/* --- PRODEJ KEMPU (NOVÝ PRVEK) --- */
.sale-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background-color: var(--primary-lime);
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.sale-banner a {
    color: inherit;
    text-decoration: underline;
    margin-left: 8px;
}


#hero {
    padding-top: calc(var(--header-height) + 44px) !important;
}

@media (max-width: 767px) {
    .sale-banner {
        font-size: 11px;
        height: 50px;
        line-height: 1.2;
    }
    #hero {
        padding-top: calc(var(--header-height) + 50px) !important;
    }
}