/* ===== CZECHFOR 2026 — Main Stylesheet ===== */
/* Extracted from verze-AA-final-3/index.html + hotel-detail + service-detail + kontakt */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #1B2A4A;
    --navy-light: #2A3F6A;
    --gold: #C9A84C;
    --gold-light: #E8D5A0;
    --gold-bg: #FAF6EC;
    --blue: #3A6EA5;
    --blue-light: #5B8EC4;
    --red: #C62828;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray-100: #F0EDE8;
    --gray-200: #D8D4CC;
    --gray-500: #8A8478;
    --gray-700: #4A4640;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --header-height: 80px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.8;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 1px 20px rgba(27,42,74,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 24px;
}

.logo img {
    height: 62px;
    width: auto;
    padding: 4px 0;
}

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--navy); }

.lang-switch {
    display: flex;
    gap: 6px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--gray-200);
}

.lang-switch a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.3s;
}

.lang-switch a.active {
    background: var(--gold);
    color: var(--navy) !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero overlay pro headline (pozadavek #1) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,42,74,0.7) 0%, rgba(27,42,74,0.3) 60%, transparent 100%);
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 0 40px;
}

.hero-text {
    max-width: 560px;
    color: var(--white);
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    line-height: 1.15;
}

.hero-text .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.hero-text .hero-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 32px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s;
}

.hero-dot.active {
    background: var(--gold);
    width: 48px;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold-light); }

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    color: var(--white);
    font-size: 1.8rem;
}

.mobile-lang {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.mobile-lang a {
    font-size: 0.9rem !important;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
}

.mobile-lang a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy) !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 3px;
    transition: all 0.35s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: #d4b35a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,42,74,0.3);
}

.btn-gold-outline {
    background: var(--gold-light);
    color: var(--navy);
}

.btn-gold-outline:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== SERVICES STRIP ===== */
.services-strip {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 32px;
    text-align: center;
}

/* Pozadavek #7: service items bez hover shadow/stin, neklikatelne */
.service-item {
    padding: 32px 16px;
    border-radius: 8px;
    cursor: default;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-light);
    font-size: 1.2rem;
}

.service-item h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.service-item p {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-desc { margin-bottom: 16px; }

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat { text-align: center; }

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-visual { position: relative; }

.about-visual-box {
    background: var(--navy);
    border-radius: 8px;
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-visual-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--navy-light);
    opacity: 0.3;
}

.about-visual-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.08;
}

.about-visual-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.about-visual-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.8;
    position: relative;
}

.about-visual-box ul {
    list-style: none;
    margin-top: 24px;
    position: relative;
}

.about-visual-box ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-visual-box ul li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* ===== CITY SECTIONS ===== */
.city-section {
    padding: 100px 0;
}

.city-section:nth-child(even) { background: var(--white); }
.city-section:nth-child(odd) { background: var(--off-white); }

.city-banner {
    position: relative;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
}

.city-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,42,74,0.8) 0%, rgba(27,42,74,0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.city-banner-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 8px;
}

.city-banner-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Tabs */
.city-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--gold-bg);
    border-radius: 6px;
    padding: 4px;
    width: fit-content;
}

.city-tab {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    background: transparent;
    color: var(--gray-500);
    transition: all 0.3s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.city-tab.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(27,42,74,0.25);
    font-weight: 700;
}

.city-tab:hover:not(.active) { color: var(--navy); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    display: block;
}

.city-section:nth-child(even) .card { background: var(--off-white); }

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27,42,74,0.1);
}

.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.card-stars {
    color: var(--gold);
    font-size: 0.7rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 12px;
    letter-spacing: 0.03em;
    transition: gap 0.3s, color 0.3s;
}

.card-link:hover { gap: 10px; color: var(--navy); }

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 48px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-info-item h5 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.88rem;
    color: var(--gray-500);
    text-decoration: none;
}

.contact-info-item a:hover { color: var(--blue); }

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* ===== PHONE PREFIX (kontakt) ===== */
.phone-input-group {
    display: flex;
    gap: 8px;
}

.phone-prefix {
    width: 130px;
    flex-shrink: 0;
}

.phone-input-group input[type="tel"] {
    flex: 1;
}

/* ===== MULTI-SELECT CHECKBOXES (kontakt) ===== */
.interest-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.interest-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1.5px solid var(--gray-200);
    background: var(--off-white);
    transition: all 0.2s;
}

.interest-checkboxes label:hover {
    border-color: var(--blue-light);
}

.interest-checkboxes input[type="checkbox"] {
    width: auto;
    accent-color: var(--navy);
}

.interest-checkboxes input[type="checkbox"]:checked + span {
    font-weight: 600;
}

/* ===== FOUNDER PHOTO (kontakt) ===== */
.founder-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-top: 32px;
    text-align: center;
}

.founder-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--gold-light);
}

.founder-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.founder-card .founder-title {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.founder-card .founder-bio {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    text-align: left;
}

/* ===== HOTEL DETAIL PAGE ===== */
.page-hero {
    background: var(--navy);
    padding: 120px 0 60px;
    margin-top: var(--header-height);
}

.page-hero .section-label { color: var(--gold-light); }

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 8px;
}

.page-hero .page-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .separator { margin: 0 8px; }

/* Photo gallery grid */
.gallery-section {
    padding: 60px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-grid a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.gallery-grid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-grid a:hover img {
    transform: scale(1.05);
}

.gallery-grid a::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27,42,74,0.4);
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-grid a:hover::after {
    opacity: 1;
}

/* Amenities grid */
.amenities-section {
    padding: 60px 0;
    background: var(--off-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.amenity-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
}

/* Hotel/Service detail content */
.detail-section {
    padding: 80px 0;
    background: var(--white);
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.detail-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.detail-text h2 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: start;
}

.sidebar-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.88rem;
}

.sidebar-item:last-child { border-bottom: none; }

.sidebar-item i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 32px;
    transition: gap 0.3s;
}

.back-link:hover { gap: 12px; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open { display: flex; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

.footer p {
    font-size: 0.88rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.footer ul li a:hover { opacity: 1; color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== KONTAKT PAGE SPECIFIC ===== */
.kontakt-hero {
    background: var(--navy);
    padding: 120px 0 60px;
    margin-top: var(--header-height);
    text-align: center;
}

.kontakt-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 12px;
}

.kontakt-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Kontakt page: form LEFT, info RIGHT (pozadavek #5) */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .container { padding: 0 28px; }
    .nav { display: none; }
    .burger { display: flex; }
    .mobile-nav { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-row { gap: 32px; }
    .city-banner { height: 260px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .detail-sidebar { position: static; }
    .interest-checkboxes { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    :root { --header-height: 60px; }
    .container { padding: 0 20px; }
    .hero { min-height: 400px; height: 55vh; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-item { padding: 20px 12px; }
    .stats-row { flex-wrap: wrap; gap: 24px; }
    .stat { flex: 1 0 40%; }
    .cards-grid { grid-template-columns: 1fr; }
    .city-banner { height: 200px; }
    .city-tabs { width: 100%; overflow-x: auto; }
    .city-tab { flex: 1; text-align: center; padding: 10px 12px; font-size: 0.78rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-form { padding: 28px 20px; }
    .about { padding: 80px 0; }
    .city-section { padding: 60px 0; }
    .contact-section { padding: 60px 0; }
    .btn { width: 100%; justify-content: center; padding: 15px 24px; }
    .logo img { height: 44px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid a { height: 140px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .phone-input-group { flex-direction: column; }
    .phone-prefix { width: 100%; }
    .interest-checkboxes { grid-template-columns: 1fr; }
}

/* ===== CMS LIVEEDIT COMPATIBILITY ===== */
.page-text { min-height: 50px; }
.editable-area { min-height: 30px; }
