/* ============================================
   ZRUB ŽIVA – CSS
   Farebná paleta: hnedá (drevo) + oranžová (oheň)
   Štýl: moderne tradičný, zrubový, teplý
   ============================================ */

:root {
    /* Hlavné farby — hnedá paleta (presne podľa letáka Zrub Živa) */
    --brown-darkest: #2a1810;
    --brown-darker: #3d2817;     /* čokoládová z letáka - hlavné tmavé pozadie */
    --brown-dark: #5a3a22;       /* drevený tón */
    --brown-mid: #8b5a3c;        /* drevený akcent */
    --brown-light: #b88968;
    --brown-lighter: #d4b394;
    --brown-cream: #f5ebd9;      /* veľmi svetlé pozadie */
    --brown-paper: #faf5ec;      /* takmer biele pozadie */

    /* Oranžová – terakotový akcent (z letáka) */
    --orange-dark: #b85a2a;
    --orange: #d97847;           /* hlavná terakotová - tlačidlá, akcenty */
    --orange-light: #e89868;
    --orange-pale: #f5dcc6;

    /* Doplnkové */
    --white: #ffffff;
    --black: #1a1208;
    --shadow-sm: 0 2px 8px rgba(45, 27, 14, 0.08);
    --shadow-md: 0 8px 24px rgba(45, 27, 14, 0.12);
    --shadow-lg: 0 16px 48px rgba(45, 27, 14, 0.18);

    /* Fonty */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    --font-blackletter: 'UnifrakturCook', 'UnifrakturMaguntia', Georgia, serif;
    --font-script: 'Allura', 'Great Vibes', cursive;

    /* Bootstrap override */
    --bs-primary: var(--orange);
    --bs-link-color: var(--brown-dark);
    --bs-link-hover-color: var(--orange-dark);

    /* Layout */
    --section-padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ============================================
   ZÁKLADY
   ============================================ */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem; /* 18px – základ pre popisný text */
    color: var(--brown-darker);
    line-height: 1.65;
    background: var(--brown-paper);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--brown-darker);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

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

a:hover {
    color: var(--orange-dark);
}

section {
    scroll-margin-top: 80px;
}

::selection {
    background: var(--orange);
    color: white;
}

/* ============================================
   TYPOGRAFICKÉ POMOCNÉ
   ============================================ */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: var(--orange);
}

.eyebrow-light {
    color: var(--orange-light);
}

.eyebrow-light::before {
    background: var(--orange-light);
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--brown-mid);
    max-width: 640px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--brown-darker);
}

/* ============================================
   SEKCIE — pozadia
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-light {
    background: var(--brown-paper);
}

.section-cream {
    background: var(--brown-cream);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(232, 122, 28, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 90, 60, 0.04) 0%, transparent 40%);
}

.section-dark {
    background: var(--brown-darkest);
    color: var(--brown-cream);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(232, 122, 28, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 90, 60, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark > .container {
    position: relative;
    z-index: 1;
}

.section-dark p,
.section-dark .info-block li {
    color: var(--brown-lighter);
}

.section-orange {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(45, 27, 14, 0.15) 0%, transparent 50%);
}

.section-orange > .container {
    position: relative;
    z-index: 1;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.92);
}

/* ============================================
   VLNITÉ ODDEĽOVAČE (signature prvok z letáka)
   ============================================ */
.wave-divider {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-divider-top {
    margin-bottom: -1px;
}

.wave-divider-bottom {
    margin-top: -1px;
    transform: rotate(180deg);
}

/* ============================================
   TEHLOVÁ TEXTÚRA (z letáka - spodná podstavba zrubu)
   ============================================ */
.brick-pattern {
    background-color: #c47a4a;
    background-image:
        linear-gradient(335deg, #b26a3a 23px, transparent 23px),
        linear-gradient(155deg, #b26a3a 23px, transparent 23px),
        linear-gradient(335deg, #b26a3a 23px, transparent 23px),
        linear-gradient(155deg, #b26a3a 23px, transparent 23px);
    background-size: 58px 58px;
    background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
}

/* ============================================
   NAVIGÁCIA
   ============================================ */
.navbar-zrub {
    background: rgba(45, 27, 14, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    transition: background 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid rgba(232, 122, 28, 0.15);
}

.navbar-zrub.scrolled {
    padding: 0.5rem 0;
    background: rgba(45, 27, 14, 0.99);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white !important;
}

.brand-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-family: var(--font-blackletter);
    font-size: 1.55rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.brand-text small {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--orange-light);
    letter-spacing: 0;
    text-transform: none;
    margin-top: -2px;
    font-weight: 400;
}

.navbar-zrub .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-zrub .nav-link:hover,
.navbar-zrub .nav-link.active {
    color: var(--orange-light) !important;
}

.navbar-zrub .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.navbar-zrub .nav-link:hover::after,
.navbar-zrub .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(232, 122, 28, 0.4);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 122, 28, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e87a1c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-zrub .nav-link::after { display: none; }
    .navbar-collapse { padding-top: 1rem; }
}

/* ============================================
   TLAČIDLÁ
   ============================================ */
.btn {
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 6px;
    padding: 0.65rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-zrub-orange {
    background: var(--orange);
    color: white;
    border: 1px solid var(--orange);
    box-shadow: 0 4px 14px rgba(232, 122, 28, 0.3);
}

.btn-zrub-orange:hover,
.btn-zrub-orange:focus {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 90, 22, 0.4);
}

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: white;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--brown-darker);
    border-color: white;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    padding-top: 100px;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #2a1810;
    overflow: hidden;
}

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

/* Skry hero img element bez src - ilustrácia ho zastúpi */
.hero-image:not([src]),
.hero-image[src=""] {
    display: none;
}

/* Atmosférická SVG ilustrácia - vyplní celý hero priestor */
.hero-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

/* Ak je fotka načítaná, skry ilustráciu */
.hero-image[src]:not([src=""]) ~ .hero-illustration,
.hero-image[src]:not([src=""]) ~ .hero-vignette {
    display: none;
}

/* Vignette - jemné stmavenie po stranách pre vizuálnu hĺbku a lepšiu čitateľnosť textu */
.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 60%,
            transparent 30%,
            rgba(26, 14, 8, 0.35) 75%,
            rgba(26, 14, 8, 0.65) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(26, 14, 8, 0.82) 0%,
            rgba(26, 14, 8, 0.68) 30%,
            rgba(26, 14, 8, 0.72) 60%,
            rgba(26, 14, 8, 0.94) 100%),
        linear-gradient(90deg,
            rgba(26, 14, 8, 0.80) 0%,
            rgba(26, 14, 8, 0.55) 40%,
            rgba(26, 14, 8, 0.32) 60%,
            rgba(26, 14, 8, 0.20) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(232, 152, 104, 0.5);
    border-radius: 100px;
    background: rgba(45, 27, 14, 0.4);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-script {
    display: block;
    font-family: var(--font-blackletter);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    line-height: 1;
    color: white;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(217, 120, 71, 0.3);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.hero-title-cursive {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--orange-light);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transform-origin: left center;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    margin-top: 1rem;
}

.hero-lead {
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-badges li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-badges i {
    color: var(--orange-light);
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    animation: bounce 2.4s infinite;
    transition: all 0.2s ease;
}

.hero-scroll:hover {
    color: var(--orange-light);
    border-color: var(--orange-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   QUICK FACTS
   ============================================ */
.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--brown-lighter);
    padding-top: 1.5rem;
}

.quick-fact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.quick-fact i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--orange-pale);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.quick-fact strong {
    display: block;
    color: var(--brown-darker);
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

.quick-fact span {
    font-size: 0.875rem;
    color: var(--brown-mid);
}

/* ============================================
   IMAGE FRAMES
   ============================================ */
.image-stack {
    position: relative;
    padding-bottom: 2rem;
}

.image-frame {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid white;
    background: white;
    z-index: 2;
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-frame:hover {
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 5;
}

.image-frame-tall {
    transform: rotate(-1deg);
}

.image-frame-small {
    width: 50%;
    margin-top: -25%;
    margin-left: 50%;
    transform: rotate(2deg);
    z-index: 3;
    position: relative;
}

.image-frame-small img {
    aspect-ratio: 1 / 1;
}

.image-frame-offset {
    box-shadow: var(--shadow-lg);
}

/* Dekoratívny tehlový akcent - odkaz na podstavbu zrubu z letáka */
.brick-accent {
    position: absolute;
    bottom: 0;
    left: -2rem;
    width: 50%;
    height: 80px;
    border-radius: 6px;
    z-index: 1;
    background-color: #b85a2a;
    background-image:
        linear-gradient(335deg, #9c4a1f 23px, transparent 23px),
        linear-gradient(155deg, #9c4a1f 23px, transparent 23px),
        linear-gradient(335deg, #9c4a1f 23px, transparent 23px),
        linear-gradient(155deg, #9c4a1f 23px, transparent 23px);
    background-size: 58px 58px;
    background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
    transform: rotate(-2deg);
    box-shadow: 0 8px 24px rgba(184, 90, 42, 0.25);
    opacity: 0.85;
}

@media (max-width: 991.98px) {
    .brick-accent { display: none; }
}

/* ============================================
   FEATURE CARDS (Vybavenie)
   ============================================ */
.feature-card {
    background: rgba(245, 235, 217, 0.04);
    border: 1px solid rgba(212, 179, 148, 0.18);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.feature-card:hover {
    background: rgba(245, 235, 217, 0.08);
    border-color: rgba(232, 122, 28, 0.4);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(232, 122, 28, 0.3);
}

.feature-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--brown-lighter);
    font-size: 1.125rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   INFO BLOCKS
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 179, 148, 0.2);
}

.info-block h4 {
    color: var(--orange-light);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(212, 179, 148, 0.15);
    font-size: 0.95rem;
}

.info-block li:last-child { border-bottom: none; }

.info-block strong { color: white; }

/* ============================================
   GALÉRIA
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: var(--brown-cream);
    cursor: zoom-in;
    display: block;
    text-decoration: none;
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 4 / 3;
}

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

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

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

.gallery-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(45, 27, 14, 0.85);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    z-index: 2;
}

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

@media (max-width: 575.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item-wide { grid-column: span 2; }
}

/* ============================================
   CENNÍK
   ============================================ */
.price-card {
    background: white;
    border: 1px solid var(--brown-lighter);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.price-card-head h3 {
    font-size: 1.4rem;
    color: var(--brown-darker);
    margin-bottom: 0.4rem;
}

.price-period {
    display: block;
    font-size: 0.875rem;
    color: var(--brown-mid);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.price-amount {
    font-size: 1rem;
    color: var(--brown-mid);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--brown-lighter);
}

.price-amount strong {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--orange-dark);
    display: inline-block;
    line-height: 1;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: var(--brown-darker);
    position: relative;
    padding-left: 1.5rem;
}

.price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.price-card-featured {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-darker) 100%);
    border-color: var(--brown-darker);
    color: var(--brown-cream);
}

.price-card-featured .price-card-head h3 { color: white; }
.price-card-featured .price-period { color: var(--brown-lighter); }
.price-card-featured .price-amount {
    color: var(--brown-lighter);
    border-bottom-color: rgba(212, 179, 148, 0.3);
}
.price-card-featured .price-amount strong { color: var(--orange-light); }
.price-card-featured .price-list li { color: var(--brown-cream); }

.price-tag {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--orange);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(232, 122, 28, 0.4);
}

.price-card-cta {
    background: var(--brown-paper);
    border: 2px dashed var(--orange);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-card-cta h3 {
    font-size: 1.35rem;
    color: var(--brown-darker);
}

.price-card-cta i {
    font-size: 2.5rem;
    color: var(--orange);
}

.price-card-cta p {
    color: var(--brown-mid);
    margin-bottom: 1.25rem;
}

/* ============================================
   POI CARDS (Okolie)
   ============================================ */
.poi-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    border-left: 4px solid var(--orange);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.poi-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.poi-card i {
    font-size: 1.75rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
    display: block;
}

.poi-card h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown-darker);
    margin-bottom: 0.25rem;
}

.poi-distance {
    font-size: 0.78rem;
    color: var(--orange-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.poi-card p:last-child {
    font-size: 1.125rem;
    color: var(--brown-mid);
    margin: 0;
    line-height: 1.55;
}

.text-zrub-orange { color: var(--orange) !important; }

/* Map frame */
.map-frame {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Tip blocks */
.tip-block {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--brown-lighter);
}

.tip-block h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--brown-darker);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tip-block i {
    color: var(--orange);
    margin-right: 0.5rem;
}

.tip-block p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--brown-mid);
}

/* ============================================
   RECENZIE
   ============================================ */
.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 1.75rem;
    background: rgba(232, 122, 28, 0.1);
    border: 1px solid rgba(242, 149, 69, 0.3);
    border-radius: 100px;
    margin-top: 0.5rem;
}

.rating-stars i {
    color: var(--orange-light);
    font-size: 1.1rem;
}

.rating-number {
    font-family: var(--font-display);
    color: white;
    font-size: 1.1rem;
}

.rating-number strong {
    color: var(--orange-light);
    font-size: 1.5rem;
    font-weight: 800;
}

.rating-count {
    color: var(--brown-lighter);
    font-size: 0.9rem;
}

.review-card {
    background: rgba(245, 235, 217, 0.05);
    border: 1px solid rgba(212, 179, 148, 0.2);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(232, 122, 28, 0.4);
    background: rgba(245, 235, 217, 0.08);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: var(--orange-light);
    font-size: 0.95rem;
}

.review-card blockquote {
    color: var(--brown-cream);
    font-size: 1.125rem;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0;
    border: none;
}

.review-card footer {
    color: var(--orange-light);
    font-size: 0.875rem;
    font-style: normal;
}

.review-card footer strong { color: white; }

/* ============================================
   FAQ
   ============================================ */
.accordion-zrub .accordion-item {
    border: 1px solid var(--brown-lighter);
    background: white;
    margin-bottom: 0.75rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-zrub .accordion-button {
    background: white;
    color: var(--brown-darker);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
    font-family: var(--font-body);
}

.accordion-zrub .accordion-button:not(.collapsed) {
    background: var(--orange-pale);
    color: var(--brown-darkest);
}

.accordion-zrub .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c85a16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-zrub .accordion-button:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 122, 28, 0.15) !important;
}

.accordion-zrub .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--brown-mid);
    line-height: 1.7;
    font-size: 1.125rem;
}

.accordion-zrub .accordion-body strong { color: var(--brown-darker); }

/* ============================================
   KONTAKT
   ============================================ */
.contact-block {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-item strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-item strong a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.contact-item strong a:hover {
    color: white;
    border-bottom-style: solid;
}

.contact-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-card {
    background: white;
    color: var(--brown-darker);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    color: var(--brown-darker);
    font-size: 1.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brown-darker);
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    border: 1px solid var(--brown-lighter);
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    color: var(--brown-darker);
    transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 122, 28, 0.15);
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.form-check-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 122, 28, 0.15);
}

.contact-form-card .btn-light {
    background: var(--brown-darker);
    color: white;
    border: 1px solid var(--brown-darker);
    font-weight: 700;
}

.contact-form-card .btn-light:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--brown-darkest);
    color: var(--brown-lighter);
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .brand-text strong {
    font-family: var(--font-blackletter);
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
}

.footer-brand .brand-text small {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--orange-light);
    letter-spacing: 0;
    text-transform: none;
    margin-top: -2px;
}

.footer p {
    color: var(--brown-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer h5 {
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
}

.footer-links a,
.footer-contact a {
    color: var(--brown-lighter);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange-light);
}

.footer-contact i {
    color: var(--orange);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.footer-divider {
    border-top: 1px solid rgba(212, 179, 148, 0.15);
    margin: 2.5rem 0 1.5rem;
}

.footer .small {
    color: var(--brown-light);
}

.footer .small a {
    color: var(--brown-lighter);
}

.footer .small a:hover {
    color: var(--orange-light);
}

.social-row {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--brown-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--orange);
    color: white;
}

/* ============================================
   FLOATING CTA (mobil)
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 18px rgba(232, 122, 28, 0.5);
    z-index: 1000;
    transition: all 0.2s ease;
}

.floating-cta:hover {
    background: var(--orange-dark);
    color: white;
    transform: scale(1.08);
}

/* ============================================
   PLACEHOLDER PRE PRÁZDNE OBRÁZKY
   ============================================ */
img[data-placeholder]:not([src]),
img[data-placeholder][src=""] {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, var(--brown-cream) 0%, var(--brown-lighter) 100%);
    color: var(--brown-dark);
    position: relative;
}

/* Hero img - placeholder musí vyplniť celý parent (pretože je position:absolute a má width/height v HTML) */
.hero-image[data-placeholder]:not([src]),
.hero-image[data-placeholder][src=""] {
    background:
        linear-gradient(135deg, #8b5a3c 0%, #5a3a22 50%, #3d2817 100%);
}

.img-placeholder-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: var(--brown-darker);
    pointer-events: none;
    line-height: 1.4;
    background: rgba(245, 235, 217, 0.65);
    gap: 0.5rem;
}

.img-placeholder-label::before {
    content: '\F451';
    font-family: 'bootstrap-icons';
    display: block;
    font-size: 1.75rem;
    color: var(--orange);
    line-height: 1;
}

.img-placeholder-filename {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brown-darkest);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    border: 1px solid var(--orange);
    word-break: break-all;
    max-width: 95%;
    box-shadow: 0 2px 6px rgba(45, 27, 14, 0.1);
}

.img-placeholder-desc {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--brown-mid);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 95%;
}

/* Hero – placeholder nevykresľujeme (má vlastnú SVG ilustráciu); chyba 404 by sa
   beztak skryla pod overlay. Skrývame label tu pre prípad budúcich zmien. */
.hero-image-wrap .img-placeholder-label {
    display: none;
}

/* ============================================
   RESPONZIVITA
   ============================================ */
@media (max-width: 991.98px) {
    .image-frame-small {
        width: 60%;
        margin-top: -10%;
    }

    .navbar-zrub {
        background: rgba(45, 27, 14, 0.99);
    }

    .navbar-collapse {
        background: var(--brown-darkest);
        margin-top: 0.75rem;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(232, 122, 28, 0.2);
    }
}

@media (max-width: 767.98px) {
    .hero { padding-top: 90px; }
    .hero > .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { width: 100%; }
    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    /* Silnejší overlay na mobile - text musí ostať čitateľný cez ilustráciu */
    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(26, 14, 8, 0.90) 0%,
                rgba(26, 14, 8, 0.78) 30%,
                rgba(26, 14, 8, 0.86) 70%,
                rgba(26, 14, 8, 0.98) 100%);
    }
    .contact-form-card { padding: 1.5rem; }
    .review-card { padding: 1.5rem; }
    .feature-card { padding: 1.5rem; }
    .price-card { padding: 1.5rem; }
}

@media (max-width: 575.98px) {
    .image-frame-small {
        width: 70%;
        margin-left: 30%;
    }
    .brand-text small { display: none; }
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        width: 52px;
        height: 52px;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .navbar, .floating-cta, .hero-scroll, .contact-form-card { display: none; }
    .hero { min-height: auto; padding: 2rem 0; color: black; }
    .hero-overlay, .hero-image-wrap { display: none; }
    .section { padding: 1.5rem 0; }
    .section-dark, .section-orange { background: white; color: black; }
    .feature-card, .review-card { color: black; }
}

/* ============================================
   PRÍSTUPNOSŤ
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-scroll { animation: none; }
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

/* ============================================
   GLIGHTBOX – override
   ============================================ */
/* Fotka: max 100vw / 100vh, inak neobmedzená */
.glightbox-container .ginner-container,
.glightbox-container .gslide,
.glightbox-container .gslide-media,
.glightbox-container .gslide-image {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: auto !important;
    height: auto !important;
}

.glightbox-container .gslide-image img {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* Titulok: tenký tmavý pás s bielym písmom (overlay na spodku fotky) */
.glightbox-container .gslide-description,
.glightbox-container .gdesc-inner {
    background: rgba(0, 0, 0, 0.78) !important;
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    max-width: 100vw !important;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.glightbox-container .gslide-title {
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: none;
}

.glightbox-container .gslide-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem !important;
    margin: 0.25rem 0 0 !important;
    padding: 0 !important;
}

/* Description box pripneme na spodok fotky ako úzky overlay pruh */
.glightbox-container .gslide-media {
    position: relative;
}

.glightbox-container .gslide-media .gslide-description {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}
