/* ============================================
   Apartmán Moravia — Modern & Clean Design
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #faf8f4;
    --bg-alt: #f3eee5;
    --card: #ffffff;
    --text: #1a1a1a;
    --text-soft: #5a5a5a;
    --text-muted: #8a8a8a;
    --accent: #b08560;
    --accent-dark: #8b6443;
    --accent-light: #e8dcc8;
    --border: #e5e0d4;
    --border-light: #efe9dc;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
    --max-w: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.4rem; }

p { color: var(--text-soft); }

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 24px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

@media (max-width: 720px) {
    .logo {
        font-size: 1.3rem;
        gap: 10px;
    }
    .logo-mark {
        width: 44px;
        height: 44px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--text);
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--accent-light);
    color: var(--accent-dark);
}

/* Language switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 4px;
    border-left: 1px solid var(--border);
    padding-left: 12px;
}

.lang-switch a {
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-radius: 4px;
}

.lang-switch a:hover {
    color: var(--accent-dark);
    background: transparent;
}

.lang-switch a.active {
    color: var(--text);
    background: transparent;
}

@media (max-width: 720px) {
    .lang-switch {
        margin-left: 0;
        margin-top: 12px;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-top: 12px;
        width: 100%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--text);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--accent);
    color: white;
}

.btn-secondary:hover {
    background: var(--accent-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--text);
}

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

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-alt);
}

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

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 30%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 48px;
    width: 100%;
    color: white;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
    border-radius: var(--radius-lg);
    max-width: 860px;
    margin-left: max(24px, calc((100% - var(--max-w)) / 2));
}

@media (max-width: 720px) {
    .hero-content {
        margin-left: 0;
        padding: 28px 24px;
        border-radius: 0;
        max-width: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 100%);
    }
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero h1 {
    color: white;
    max-width: 800px;
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-sub {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: white;
    color: var(--text);
}

.hero .btn-primary:hover {
    background: var(--accent);
    color: white;
}

.hero .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* Page hero (smaller) */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-alt);
}

.page-hero .hero-bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.45) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 24px;
}

.page-hero h1 {
    color: white;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 96px 0;
}

.section-tight {
    padding: 64px 0;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    color: var(--accent-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.left {
    text-align: left;
}

.section-header.left .section-lead {
    margin: 0;
}

/* ============================================
   FEATURE GRID
   ============================================ */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

.feature {
    background: var(--card);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.feature p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* ============================================
   SPLIT (text + image)
   ============================================ */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h2 {
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 16px;
    font-size: 1.02rem;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--bg-alt);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.span-6 { grid-column: span 6; aspect-ratio: 4/3; }
.gallery-item.span-4 { grid-column: span 4; aspect-ratio: 1; }
.gallery-item.span-3 { grid-column: span 3; aspect-ratio: 1; }
.gallery-item.span-8 { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-item.span-12 { grid-column: span 12; aspect-ratio: 16/10; background: var(--bg-alt); }
.gallery-item.span-12 img { object-fit: contain; padding: 24px; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.price-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--border-light);
    position: relative;
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.price-card .badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background: var(--accent);
    color: white;
    padding: 5px 14px;
    font-size: 0.78rem;
    border-radius: 100px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 8px;
}

.price-card .price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .label {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.price-row .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 600;
}

.price-note {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================
   FORM
   ============================================ */

.reservation-form {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    margin-top: 12px;
    width: 100%;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question span.icon {
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question span.icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-soft);
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding-top: 14px;
}

/* ============================================
   ACTIVITY CARDS
   ============================================ */

.activity-section {
    margin-bottom: 64px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.activity-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.activity-card-image {
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.06);
}

.activity-card-content {
    padding: 22px 24px;
}

.activity-card h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
}

.activity-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ============================================
   EQUIPMENT
   ============================================ */

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.equipment-block {
    padding: 28px 24px;
}

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

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

.equipment-block {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.equipment-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.equipment-block h3 .icon {
    color: var(--accent);
    width: 28px;
    height: 28px;
}

.equipment-block ul {
    list-style: none;
}

.equipment-block li {
    padding: 8px 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.equipment-block li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================
   STATS / BENEFITS BAR
   ============================================ */

.benefits-bar {
    background: var(--bg-alt);
    padding: 48px 0;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}

.benefit-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--accent-dark);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item .label {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--bg-alt);
}

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

.testimonial {
    background: var(--card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.testimonial .stars {
    color: var(--accent);
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-soft);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 500;
    color: var(--text);
    font-size: 0.92rem;
}

.testimonial-author small {
    display: block;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
    font-size: 0.82rem;
}

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

.site-footer {
    background: #1c1815;
    color: #d4ccc0;
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #a09a90;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    font-weight: 600;
}

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

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

.footer-col a {
    color: #a09a90;
    font-size: 0.94rem;
}

.footer-col a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid #5a544c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4ccc0;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.04);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid #2a2520;
    text-align: center;
    font-size: 0.85rem;
    color: #7a7268;
}

/* ============================================
   FLOATING CTA (mobile)
   ============================================ */

.mobile-cta {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 99;
}

.mobile-cta .btn {
    width: 100%;
    box-shadow: 0 8px 28px rgba(176, 133, 96, 0.4);
}

/* Floating Email FAB — desktop bottom-right */
.fab-email {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(176, 133, 96, 0.45);
    z-index: 90;
    transition: all 0.25s ease;
    text-decoration: none;
}

.fab-email:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(176, 133, 96, 0.5);
}

.fab-email svg {
    width: 24px;
    height: 24px;
}

.fab-email::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.fab-email:hover::after {
    opacity: 1;
}

@media (max-width: 720px) {
    /* Na mobilu se FAB schová — máme sticky CTA tlačítko dole */
    .fab-email {
        display: none;
    }
}

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

@media (max-width: 960px) {
    section { padding: 64px 0; }

    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 720px) {
    /* Důležité (mobil):
       1) backdrop-filter vytváří containing block pro position:fixed potomky
          (menu by bylo uvězněné v boxu headeru) → vypnout.
       2) position: sticky vytváří na mobilních prohlížečích stacking context
          VŽDY, i se z-index: auto. Menu (z-index 201) je tedy uvězněné
          uvnitř headeru a celý header se vykreslí POD backdropem (200).
       Řešení: dát headeru z-index VYŠŠÍ než backdrop (300 > 200) —
       celý header včetně vysunutého menu se pak kreslí nad backdropem. */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg);
        z-index: 300;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 28px;
        transition: right 0.3s ease;
        z-index: 201;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        overflow-y: auto;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 14px;
        font-size: 1rem;
    }

    .main-nav .btn {
        width: 100%;
        margin-top: 12px;
    }

    .menu-toggle {
        display: inline-flex;
        z-index: 202;
        position: relative;
    }

    .hero { min-height: 80vh; padding: 80px 0 60px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero .btn { width: 100%; }

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

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

    .reservation-form {
        padding: 28px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-item.span-6,
    .gallery-item.span-4,
    .gallery-item.span-3,
    .gallery-item.span-8 {
        grid-column: span 6;
        aspect-ratio: 1;
    }

    .mobile-cta {
        display: block;
    }

    body { padding-bottom: 80px; }

    section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .reservation-form { padding: 24px 18px; }
    .equipment-block { padding: 24px; }
    .price-card { padding: 28px 24px; }
}

/* Dining cards (Kde se najíst) — celá dlaždice clickable */
.dining-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}
.dining-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--accent-light);
}
.dining-card h3 {
    margin: 0 0 4px;
    color: var(--text);
    transition: color 0.2s ease;
}
.dining-card:hover h3 {
    color: var(--accent-dark);
}
.dining-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}
.dining-card p strong {
    color: var(--accent-dark);
    font-weight: 500;
}

/* Mobile menu backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}

.menu-backdrop.active {
    display: block;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* Map iframe */
.map-frame {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ============================================
   COOKIE BANNER (GDPR)
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--text);
    color: #f5f0e6;
    padding: 22px 26px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    z-index: 1000;
    display: none;
    animation: cookieSlideUp 0.4s ease-out;
}

.cookie-banner.visible {
    display: block;
}

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

.cookie-banner-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1 1 280px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d4ccc0;
}

.cookie-banner-text strong {
    color: white;
    display: block;
    margin-bottom: 6px;
    font-size: 0.98rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cookie-banner-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 10px 20px;
    font-size: 0.88rem;
}

.cookie-banner .btn-accept {
    background: var(--accent);
    color: white;
}
.cookie-banner .btn-accept:hover {
    background: var(--accent-dark);
    color: white;
}

.cookie-banner .btn-decline {
    background: transparent;
    color: #d4ccc0;
    border: 1px solid #4a4540;
}
.cookie-banner .btn-decline:hover {
    background: #2a2520;
    color: white;
}

@media (max-width: 560px) {
    .cookie-banner {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 18px 20px;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-banner-actions .btn {
        flex: 1;
    }
}
