/* ==========================================================================
   Penzion Šléglov - Custom Theme Styles
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #4C6930;
    --color-primary-hover: #3d5526;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-light-bg: #f8f8f8;
    --font-sans: 'Roboto', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

/* ---------- Base ---------- */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-weight: 700;
}

/* ---------- Navbar ---------- */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
    transition: opacity 0.3s ease;
}

.navbar-brand img:hover {
    opacity: 0.85;
}

.navbar-nav .nav-link {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    padding: 0.5rem 1.1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

/* ---------- Animated Hamburger ---------- */
.mobile-menu-toggle {
    border: none;
    padding: 0;
    background: none;
    z-index: 1051;
    position: relative;
    cursor: pointer;
}

.mobile-menu-toggle:focus {
    box-shadow: none;
    outline: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    width: 28px;
    height: 20px;
    justify-content: space-between;
    pointer-events: none;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* Active state - X animation */
.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--color-white);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--color-white);
}

/* ---------- Mobile Fullscreen Menu ---------- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 40, 20, 0.97);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-list li {
    margin-bottom: 8px;
}

.mobile-menu-overlay .mobile-nav-list li a,
.mobile-menu-overlay .mobile-nav-list li a.nav-link,
.mobile-menu-overlay .navbar-nav li a,
.mobile-menu-overlay .navbar-nav li a.nav-link {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff !important;
    opacity: 1;
    padding: 10px 0 !important;
    display: inline-block;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.mobile-menu-overlay .mobile-nav-list li a:hover,
.mobile-menu-overlay .mobile-nav-list li a.nav-link:hover,
.mobile-menu-overlay .navbar-nav li a:hover,
.mobile-menu-overlay .navbar-nav li a.nav-link:hover {
    opacity: 0.75;
    color: #ffffff !important;
}

.mobile-menu-cta {
    font-size: 22px;
    padding: 14px 40px;
    margin-top: 30px;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn-primary-sleglov {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 28px;
    transition: all 0.3s ease;
}

.btn-primary-sleglov:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-white);
}

.btn-outline-sleglov {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 28px;
    transition: all 0.3s ease;
}

.btn-outline-sleglov:hover {
    background-color: rgba(76, 105, 48, 0.1);
    color: var(--color-primary);
    border-color: var(--color-primary-hover);
}

/* Large button variant */
.btn-lg.btn-primary-sleglov,
.btn-lg.btn-outline-sleglov {
    padding: 12px 32px;
}

/* ---------- Hero Section ---------- */
.hero-section {
    padding: 0;
    background-color: var(--color-white);
    overflow: hidden;
}

/* Left half - mimics container left padding */
.container-half-left {
    padding-left: calc((100vw - 1140px) / 2);
    padding-right: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1400px) {
    .container-half-left {
        padding-left: calc((100vw - 1320px) / 2);
    }
}

@media (max-width: 1199.98px) {
    .container-half-left {
        padding-left: calc((100vw - 960px) / 2);
    }
}

@media (max-width: 991.98px) {
    .container-half-left {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .container-half-left {
        padding-left: calc((100vw - 720px) / 2 + 12px);
        padding-right: calc((100vw - 720px) / 2 + 12px);
    }
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 60px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 25px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-text {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero image - full bleed to right edge */
.hero-image-wrapper {
    overflow: hidden;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
}

/* Right half - mimics container right padding */
.container-half-right {
    padding-right: calc((100vw - 1140px) / 2);
    padding-left: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 1400px) {
    .container-half-right {
        padding-right: calc((100vw - 1320px) / 2);
    }
}

@media (max-width: 1199.98px) {
    .container-half-right {
        padding-right: calc((100vw - 960px) / 2);
        padding-left: 40px;
    }
}

@media (max-width: 991.98px) {
    .container-half-right {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .container-half-right {
        padding-left: calc((100vw - 720px) / 2 + 12px);
        padding-right: calc((100vw - 720px) / 2 + 12px);
    }
}

/* ---------- About Section ---------- */
.about-section {
    padding: 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.about-image-wrapper {
    overflow: hidden;
    height: 100%;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.about-title {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ---------- Features Section ---------- */
.features-section {
    background-color: #EEEFE9;
    padding: 70px 0;
}

@media (min-width: 992px) {
    .feature-col + .feature-col {
        border-left: 1px solid #52525B;
    }
}

.feature-item {
    padding: 10px 30px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.feature-title {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.feature-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Wellness Section ---------- */
.wellness-section {
    padding: 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.wellness-title {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 36px;
}

.wellness-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wellness-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.wellness-feature-icon {
    flex-shrink: 0;
    width: 32px;
    margin-top: 2px;
}

.wellness-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.wellness-feature-text p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.wellness-feature-text strong {
    font-weight: 700;
    color: var(--color-dark);
}

/* Wellness image - full bleed right */
.wellness-image-wrapper {
    overflow: hidden;
    height: 100%;
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* ---------- Rooms Section ---------- */
.rooms-section {
    padding: 104px 0;
    background-color: #F4F4F4;
}

.rooms-heading {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.rooms-description {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Room cards */
a.room-card {
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-white);
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

a.room-card:hover {
    box-shadow: 0 8px 30px rgba(76, 105, 48, 0.12);
    transform: translateY(-4px);
}

.room-card-image {
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.room-card-body {
    padding: 20px 24px 24px;
}

.room-card-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.room-card-info {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.room-card-link {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.room-card-link:hover {
    color: var(--color-primary-hover);
}

/* ---------- Surroundings Section ---------- */
.surroundings-section {
    padding: 104px 0;
    background-color: #EEEFE9;
}

.surroundings-heading {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.surroundings-description {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trip cards */
a.trip-card {
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-white);
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

a.trip-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.trip-card-image {
    overflow: hidden;
}

.trip-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.trip-card-body {
    padding: 18px 20px 22px;
}

.trip-card-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.trip-card-info {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.trip-card-distance {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    padding: 104px 0;
    background-color: var(--color-white);
}

.gallery-heading {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.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-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-item-overlay i {
    color: var(--color-white);
    font-size: 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

.gallery-item:hover .gallery-item-overlay i {
    opacity: 1;
}

/* Large left image spans 2 rows */
.gallery-item-large {
    grid-row: 1 / 3;
}

/* CTA tile */
.gallery-cta {
    border-radius: 16px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.gallery-cta:hover {
    background-color: var(--color-primary-hover);
}

.gallery-cta-text {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--color-white);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 80px 0;
    background-color: var(--color-primary);
}

.cta-heading {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white-filled {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 36px;
    transition: all 0.3s ease;
}

.btn-white-filled:hover {
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 36px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--color-white);
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.testimonials-heading {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.testimonials-slider {
    overflow: visible;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(40% - 12px);
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    padding: 32px 28px;
    background-color: var(--color-white);
    transition: opacity 0.4s ease;
}

.testimonial-stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0;
    text-align: right;
}

/* Progress bar */
.testimonials-progress {
    margin-top: 40px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    position: relative;
    width: 100%;
}

.testimonials-progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonials-controls {
    display: none;
}

/* ---------- News Section ---------- */
.news-section {
    padding: 104px 0;
    background-color: var(--color-white);
}

.news-heading {
    font-family: var(--font-mono);
    font-size: 35px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 40px;
}

a.news-card,
.news-card {
    display: block;
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    padding: 32px 28px;
    background-color: var(--color-white);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

a.news-card:hover {
    box-shadow: 0 8px 30px rgba(76, 105, 48, 0.12);
    transform: translateY(-4px);
}

.news-card-title {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.news-card-excerpt {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-card-link {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a.news-card:hover .news-card-link {
    color: var(--color-primary-hover);
}

/* ---------- Contact Page ---------- */
.contact-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.contact-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-cards-section {
    padding: 80px 0;
}

.contact-card {
    text-align: center;
    padding: 45px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: var(--color-white);
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #EEEFE9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--color-primary);
}

.contact-card-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

a.contact-card-value,
p.contact-card-value {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

a.contact-card-value:hover {
    color: var(--color-primary);
}

.contact-card-note {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #71717A;
    margin-bottom: 0;
}

/* Directions + Map */
.contact-map-section {
    background-color: #EEEFE9;
}

.contact-directions {
    padding-top: 70px;
    padding-bottom: 70px;
}

.contact-directions-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 35px;
}

.contact-directions-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-direction-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-direction-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-white);
}

.contact-direction-item strong {
    font-family: var(--font-mono);
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.contact-direction-item p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 480px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Business Info */
.contact-business-section {
    padding: 80px 0;
}

.contact-business-title {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.contact-business-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-business-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.contact-business-row:first-child {
    border-top: 1px solid #e5e5e5;
}

.contact-business-label {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #71717A;
    min-width: 140px;
    flex-shrink: 0;
}

.contact-business-value {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
}

.contact-social-text {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #52525B;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    gap: 16px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-btn i {
    font-size: 20px;
}

.contact-social-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
    .contact-hero {
        padding: 60px 0 45px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-directions {
        padding: 50px 30px;
    }

    .contact-directions-title {
        font-size: 28px;
    }

    .contact-map-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 50px 0 35px;
    }

    .contact-hero-title {
        font-size: 30px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-cards-section {
        padding: 50px 0;
    }

    .contact-card {
        padding: 35px 24px;
    }

    .contact-directions {
        padding: 40px 20px;
    }

    .contact-directions-title {
        font-size: 26px;
    }

    .contact-map-wrapper {
        min-height: 280px;
    }

    .contact-business-section {
        padding: 50px 0;
    }

    .contact-business-title {
        font-size: 24px;
    }

    .contact-business-label {
        min-width: 110px;
    }

    .contact-social-links {
        flex-direction: column;
    }

    .contact-social-btn {
        justify-content: center;
    }
}

/* ---------- Okolí Page ---------- */
.okoli-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
    text-align: center;
}

.okoli-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.okoli-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto;
}

.okoli-category-section {
    padding: 70px 0;
}

.okoli-category-alt {
    background-color: #F4F4F4;
}

.okoli-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.okoli-category-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-white);
    flex-shrink: 0;
}

.okoli-category-title {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0;
}

/* Cards */
.okoli-card {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.okoli-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.okoli-card-image {
    width: 220px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.okoli-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.okoli-card:hover .okoli-card-image img {
    transform: scale(1.05);
}

.okoli-card-image-placeholder {
    width: 220px;
    min-height: 200px;
    flex-shrink: 0;
    background-color: #EEEFE9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-primary);
}

.okoli-card-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

.okoli-card-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.okoli-card-text {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.okoli-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.okoli-card-meta span {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #71717A;
    display: flex;
    align-items: center;
    gap: 6px;
}

.okoli-card-meta span i {
    color: var(--color-primary);
}

.okoli-card-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.okoli-card-link:hover {
    color: var(--color-primary-hover);
}

.okoli-card-link i {
    font-size: 12px;
}

/* Okolí Page Responsive */
@media (max-width: 991.98px) {
    .okoli-hero {
        padding: 60px 0 45px;
    }

    .okoli-hero-title {
        font-size: 36px;
    }

    .okoli-category-title {
        font-size: 26px;
    }

    .okoli-card-image,
    .okoli-card-image-placeholder {
        width: 180px;
    }
}

@media (max-width: 767.98px) {
    .okoli-hero {
        padding: 50px 0 35px;
    }

    .okoli-hero-title {
        font-size: 30px;
    }

    .okoli-hero-subtitle {
        font-size: 16px;
    }

    .okoli-category-section {
        padding: 50px 0;
    }

    .okoli-category-title {
        font-size: 24px;
    }

    .okoli-card {
        flex-direction: column;
    }

    .okoli-card-image,
    .okoli-card-image-placeholder {
        width: 100%;
        min-height: 180px;
        max-height: 220px;
    }

    .okoli-card-body {
        padding: 20px;
    }

    .okoli-card-title {
        font-size: 18px;
    }
}

/* ---------- Wellness Page ---------- */
.wellness-page-hero {
    background-color: #EEEFE9;
}

.wellness-page-hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.wellness-page-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.wellness-page-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.wellness-page-hero-text {
    font-family: var(--font-sans);
    font-size: 17px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.wellness-page-hero-image {
    height: 100%;
    min-height: 450px;
}

.wellness-page-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features */
.wellness-features-section {
    padding: 100px 0;
}

.wellness-features-heading {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
}

.wellness-feature-card {
    text-align: center;
    height: 100%;
}

.wellness-feature-card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
}

.wellness-feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wellness-feature-card-title {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.wellness-feature-card-text {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wellness-feature-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.wellness-feature-card-list li {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #52525B;
    padding-left: 22px;
    position: relative;
}

.wellness-feature-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* How To */
.wellness-howto-section {
    background-color: var(--color-white);
}

.wellness-howto-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.wellness-howto-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 35px;
}

.wellness-howto-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wellness-howto-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.wellness-howto-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.wellness-howto-step strong {
    font-family: var(--font-mono);
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.wellness-howto-step p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    margin-bottom: 0;
    line-height: 1.6;
}

.wellness-howto-image {
    height: 100%;
    min-height: 480px;
}

.wellness-howto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing */
.wellness-pricing-section {
    padding: 100px 0;
    background-color: #F4F4F4;
}

.wellness-pricing-heading {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
}

.wellness-pricing-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #52525B;
    margin-bottom: 0;
}

.wellness-price-card {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wellness-price-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.wellness-price-card-alt {
    border-color: var(--color-primary);
    border-width: 2px;
}

.wellness-price-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.wellness-price-value {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.wellness-price-note {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #71717A;
    margin-bottom: 24px;
}

.wellness-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    flex-grow: 1;
}

.wellness-price-list li {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wellness-price-list li i {
    color: var(--color-primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Wellness Page Responsive */
@media (max-width: 991.98px) {
    .wellness-page-hero-content {
        padding: 50px 30px;
    }

    .wellness-page-hero-title {
        font-size: 36px;
    }

    .wellness-page-hero-subtitle {
        font-size: 20px;
    }

    .wellness-page-hero-image {
        min-height: 300px;
    }

    .wellness-features-section {
        padding: 60px 0;
    }

    .wellness-features-heading,
    .wellness-howto-title,
    .wellness-pricing-heading {
        font-size: 28px;
    }

    .wellness-howto-content {
        padding: 50px 30px;
    }

    .wellness-howto-image {
        min-height: 300px;
    }

    .wellness-pricing-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .wellness-page-hero-content {
        padding: 40px 20px;
    }

    .wellness-page-hero-title {
        font-size: 30px;
    }

    .wellness-page-hero-image {
        min-height: 250px;
    }

    .wellness-features-section {
        padding: 50px 0;
    }

    .wellness-howto-content {
        padding: 40px 20px;
    }

    .wellness-howto-image {
        min-height: 250px;
    }

    .wellness-pricing-section {
        padding: 50px 0;
    }

    .wellness-price-card {
        padding: 30px 24px;
    }

    .wellness-price-value {
        font-size: 34px;
    }
}

/* ---------- Gallery Page ---------- */
.gallery-page-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
    text-align: center;
}

.gallery-page-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.gallery-page-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto;
}

.gallery-page-section {
    padding: 60px 0 80px;
}

/* Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border: 1px solid #d4d4d8;
    border-radius: 100px;
    background: var(--color-white);
    color: #52525B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.06);
}

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-page-item:hover .gallery-page-overlay {
    opacity: 1;
}

.gallery-page-overlay i {
    font-size: 28px;
    color: var(--color-white);
}

.gallery-page-caption {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-white);
}

.gallery-page-item.hidden {
    display: none;
}

.gallery-page-count {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #71717A;
    margin-top: 30px;
}

/* Empty state */
.gallery-page-empty {
    text-align: center;
    padding: 80px 20px;
    color: #71717A;
}

.gallery-page-empty i {
    font-size: 56px;
    margin-bottom: 20px;
    color: #d4d4d8;
}

.gallery-page-empty h3 {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.gallery-page-empty p {
    font-family: var(--font-sans);
    font-size: 16px;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 36px;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s;
}

.gallery-lightbox-close:hover {
    opacity: 0.7;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.gallery-lightbox-caption {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    text-align: center;
}

.gallery-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Gallery Page Responsive */
@media (max-width: 991.98px) {
    .gallery-page-hero {
        padding: 60px 0 45px;
    }

    .gallery-page-title {
        font-size: 36px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .gallery-page-hero {
        padding: 50px 0 35px;
    }

    .gallery-page-title {
        font-size: 30px;
    }

    .gallery-page-subtitle {
        font-size: 16px;
    }

    .gallery-page-section {
        padding: 40px 0 50px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-page-item {
        border-radius: 8px;
    }

    .gallery-filter-btn {
        font-size: 13px;
        padding: 8px 18px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .gallery-lightbox-prev { left: 10px; }
    .gallery-lightbox-next { right: 10px; }
}

/* ---------- About Page ---------- */
.about-page-hero {
    background-color: #EEEFE9;
}

.about-page-hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-page-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.about-page-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-page-hero-text {
    font-family: var(--font-sans);
    font-size: 17px;
    color: #52525B;
    line-height: 1.7;
}

.about-page-hero-image {
    height: 100%;
    min-height: 400px;
}

.about-page-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story */
.about-story-section {
    padding: 100px 0;
}

.about-story-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.about-story-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.about-story-text {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Offer Cards */
.about-offer-section {
    padding: 80px 0;
    background-color: #F4F4F4;
}

.about-offer-heading {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
}

.about-offer-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-offer-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.about-offer-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #EEEFE9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.about-offer-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.about-offer-text {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Voucher Section */
.about-voucher-section {
    background-color: var(--color-white);
}

.about-voucher-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-voucher-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.about-voucher-text {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-voucher-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-voucher-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-dark);
}

.about-voucher-feature i {
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-voucher-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-voucher-image {
    height: 100%;
    min-height: 480px;
}

.about-voucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Numbers */
.about-numbers-section {
    padding: 70px 0;
    background-color: #EEEFE9;
}

.about-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.about-number-value {
    font-family: var(--font-mono);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
}

.about-number-label {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
}

/* About Page Responsive */
@media (max-width: 991.98px) {
    .about-page-hero-content {
        padding: 50px 30px;
    }

    .about-page-hero-title {
        font-size: 36px;
    }

    .about-page-hero-subtitle {
        font-size: 20px;
    }

    .about-page-hero-image {
        min-height: 300px;
    }

    .about-story-section {
        padding: 60px 0;
    }

    .about-story-title {
        font-size: 28px;
    }

    .about-offer-section {
        padding: 60px 0;
    }

    .about-offer-heading {
        font-size: 28px;
    }

    .about-voucher-content {
        padding: 50px 30px;
    }

    .about-voucher-title {
        font-size: 28px;
    }

    .about-voucher-image {
        min-height: 300px;
    }

    .about-number-value {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .about-page-hero-content {
        padding: 40px 20px;
    }

    .about-page-hero-title {
        font-size: 30px;
    }

    .about-page-hero-image {
        min-height: 250px;
    }

    .about-story-section {
        padding: 50px 0;
    }

    .about-story-title {
        font-size: 26px;
    }

    .about-story-image img {
        min-height: 250px;
    }

    .about-offer-section {
        padding: 50px 0;
    }

    .about-voucher-content {
        padding: 40px 20px;
    }

    .about-voucher-title {
        font-size: 26px;
    }

    .about-voucher-image {
        min-height: 250px;
    }

    .about-voucher-buttons {
        flex-direction: column;
    }

    .about-number-value {
        font-size: 30px;
    }

    .about-numbers-section {
        padding: 50px 0;
    }
}

/* ---------- Reservation Page ---------- */
.reservation-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
    text-align: center;
}

.reservation-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.reservation-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto;
}

.reservation-form-section {
    padding: 70px 0;
}

.reservation-iframe-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reservation-iframe-wrapper iframe {
    width: 100%;
    border: 0;
    border-radius: 8px;
}

.reservation-info-section {
    padding: 0 0 80px;
}

.reservation-info-card {
    text-align: center;
    padding: 40px 28px;
    background-color: #EEEFE9;
    border-radius: 16px;
    height: 100%;
}

.reservation-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--color-white);
}

.reservation-info-title {
    font-family: var(--font-mono);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.reservation-info-text {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #52525B;
    margin-bottom: 0;
    line-height: 1.6;
}

.reservation-info-text a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reservation-info-text a:hover {
    color: var(--color-primary-hover);
}

.cta-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

/* Reservation Page Responsive */
@media (max-width: 991.98px) {
    .reservation-hero {
        padding: 60px 0 45px;
    }

    .reservation-hero-title {
        font-size: 36px;
    }

    .reservation-iframe-wrapper {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .reservation-hero {
        padding: 50px 0 35px;
    }

    .reservation-hero-title {
        font-size: 30px;
    }

    .reservation-hero-subtitle {
        font-size: 16px;
    }

    .reservation-form-section {
        padding: 40px 0;
    }

    .reservation-iframe-wrapper {
        padding: 15px;
        border-radius: 12px;
    }

    .reservation-info-section {
        padding: 0 0 50px;
    }

    .reservation-info-card {
        padding: 30px 24px;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #1a1a1a;
    padding: 0;
}

.footer-main {
    display: flex;
    align-items: stretch;
    min-height: 280px;
}

.footer-content {
    flex: 1;
    padding: 70px 50px 70px calc((100vw - 1320px) / 2 + 12px);
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .footer-content {
        padding-left: calc((100vw - 1140px) / 2 + 12px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-content {
        padding-left: calc((100vw - 960px) / 2 + 12px);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 130px auto auto auto auto;
    gap: 24px 40px;
    align-items: start;
}

.footer-map {
    flex: 0 0 380px;
    position: relative;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    transition: filter 0.4s ease;
}

.footer-map:hover iframe {
    filter: grayscale(10%) brightness(0.9);
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 130px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-title {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact .footer-link {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .footer-link:hover {
    color: var(--color-white);
}

.footer-contact .footer-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav li a {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    text-align: center;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--color-white);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .features-section {
        padding: 40px 0;
    }

    .feature-item {
        padding: 8px 15px;
    }

    .feature-icon {
        margin-bottom: 10px;
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .feature-text {
        font-size: 14px;
    }

    .feature-col {
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(82, 82, 91, 0.25);
        padding-bottom: 20px;
        margin-bottom: 20px !important;
    }

    .feature-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-image {
        min-height: 350px;
    }

    .min-vh-80 {
        min-height: auto;
    }

    .navbar-nav .nav-link {
        padding: 0.6rem 0 !important;
    }

    .btn-primary-sleglov.ms-lg-4 {
        margin-top: 1rem;
    }
}

@media (max-width: 991.98px) {
    .testimonial-card {
        flex: 0 0 70%;
    }

    .cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        flex: 0 0 85%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-heading {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-row: auto;
        grid-column: 1 / 3;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item-large img {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Footer tablet */
@media (max-width: 991.98px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-content {
        padding: 50px 30px;
    }

    .footer-grid {
        grid-template-columns: 120px auto auto auto auto;
        gap: 16px 28px;
    }

    .footer-map {
        min-width: 100%;
        height: 200px;
    }

    .footer-map iframe {
        min-height: 200px;
    }

    .footer-logo-img {
        height: 100px;
    }
}

/* Footer mobile */
@media (max-width: 767.98px) {
    .footer-content {
        padding: 40px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
    }

    .footer-col-logo {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 30px;
    }

    .footer-col-logo .footer-logo {
        display: inline-block;
        width: 50%;
    }

    .footer-logo-img {
        height: auto;
        width: 100%;
    }

    /* Kontakt column full width on mobile */
    .footer-grid > .footer-col:nth-child(2) {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid > .footer-col:nth-child(2) .footer-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .footer-grid > .footer-col:nth-child(2) .footer-link {
        font-size: 20px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
    }

    .footer-grid > .footer-col:nth-child(2) .footer-text {
        font-size: 20px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
    }

    .footer-grid > .footer-col:nth-child(2) .footer-contact {
        gap: 12px;
    }

    .footer-grid > .footer-col:nth-child(2) {
        padding-bottom: 25px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-link,
    .footer-text,
    .footer-nav li a {
        font-size: 16px;
    }

    .footer-nav {
        gap: 8px;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    /* Sledujte nás centered on mobile */
    .footer-grid > .footer-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .footer-grid > .footer-col:last-child .footer-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .footer-grid > .footer-col:last-child .footer-social {
        justify-content: center;
    }

    .footer-grid > .footer-col:last-child .footer-social-link {
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 14px;
    }

    .footer-map {
        height: 180px;
    }

    .footer-map iframe {
        min-height: 180px;
    }

    .footer-bottom {
        margin-top: 0;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* ==========================================================================
   Ubytování Page
   ========================================================================== */

/* Hero */
.ubytovani-hero {
    background-color: #EEEFE9;
}

.ubytovani-hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ubytovani-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.ubytovani-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.ubytovani-hero-text {
    font-family: var(--font-sans);
    font-size: 17px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ubytovani-hero-image {
    height: 100%;
    min-height: 450px;
}

.ubytovani-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overview section */
.ubytovani-overview {
    padding: 100px 0;
}

.ubytovani-section-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
}

.ubytovani-section-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 10px auto 0;
}

/* Floor header */
.ubytovani-floor {
    margin-bottom: 60px;
}

.ubytovani-floor:last-child {
    margin-bottom: 0;
}

.ubytovani-floor-header {
    margin-bottom: 30px;
}

.ubytovani-floor-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ubytovani-floor-title {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.ubytovani-floor-desc {
    font-size: 16px;
    color: var(--color-text-light);
}

/* Room cards */
.ubytovani-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ubytovani-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.ubytovani-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #e9ecef;
}

.ubytovani-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ubytovani-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(76, 105, 48, 0.9);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.ubytovani-card-body {
    padding: 28px;
}

.ubytovani-card-title {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.ubytovani-card-capacity {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 14px;
}

.ubytovani-card-capacity i {
    margin-right: 6px;
}

.ubytovani-card-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 18px;
}

.ubytovani-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.ubytovani-card-amenities span {
    font-size: 13px;
    color: var(--color-text);
    background: #f4f4f4;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.ubytovani-card-amenities span i {
    color: var(--color-primary);
    margin-right: 5px;
}

.ubytovani-kitchen-detail {
    font-size: 13px;
    color: var(--color-text-light);
    background: #fafafa;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.ubytovani-kitchen-detail strong {
    color: var(--color-text);
}

/* Amenities section */
.ubytovani-amenities-section {
    padding: 100px 0;
    background: #EEEFE9;
}

.ubytovani-amenity-card {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.ubytovani-amenity-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

.ubytovani-amenity-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.ubytovani-amenity-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.ubytovani-amenity-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.ubytovani-amenity-text a:hover {
    text-decoration: underline;
}

/* Common rooms section */
.ubytovani-common-section {
    padding: 100px 0;
}

.ubytovani-common-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.ubytovani-common-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ubytovani-common-text {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ubytovani-common-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ubytovani-common-list li {
    font-size: 16px;
    color: var(--color-text);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ubytovani-common-list li i {
    color: var(--color-primary);
    font-size: 18px;
}

/* Ubytování responsive */
@media (max-width: 991px) {
    .ubytovani-hero-content {
        padding: 60px 24px;
    }

    .ubytovani-hero-title {
        font-size: 36px;
    }

    .ubytovani-hero-image {
        min-height: 300px;
    }

    .ubytovani-overview {
        padding: 70px 0;
    }

    .ubytovani-section-title {
        font-size: 30px;
    }

    .ubytovani-amenities-section {
        padding: 70px 0;
    }

    .ubytovani-common-section {
        padding: 70px 0;
    }

    .ubytovani-common-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .ubytovani-hero-content {
        padding: 50px 20px;
    }

    .ubytovani-hero-title {
        font-size: 30px;
    }

    .ubytovani-hero-subtitle {
        font-size: 18px;
    }

    .ubytovani-hero-image {
        min-height: 250px;
    }

    .ubytovani-overview {
        padding: 50px 0;
    }

    .ubytovani-section-title {
        font-size: 26px;
    }

    .ubytovani-floor-title {
        font-size: 22px;
    }

    .ubytovani-card-image {
        height: 200px;
    }

    .ubytovani-card-body {
        padding: 22px;
    }

    .ubytovani-amenities-section {
        padding: 50px 0;
    }

    .ubytovani-common-section {
        padding: 50px 0;
    }
}

/* ==========================================================================
   Aktuality – Listing Page
   ========================================================================== */

.aktuality-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
    text-align: center;
}

.aktuality-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.aktuality-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.aktuality-listing {
    padding: 80px 0;
}

.aktuality-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aktuality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.aktuality-card-image {
    height: 220px;
    overflow: hidden;
}

.aktuality-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aktuality-card:hover .aktuality-card-image img {
    transform: scale(1.05);
}

.aktuality-card-body {
    padding: 28px;
}

.aktuality-card-date {
    font-size: 13px;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 10px;
}

.aktuality-card-date i {
    margin-right: 5px;
}

.aktuality-card-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.aktuality-card-excerpt {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.aktuality-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.aktuality-card:hover .aktuality-card-link {
    text-decoration: underline;
}

.aktuality-pagination {
    text-align: center;
    margin-top: 50px;
}

.aktuality-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 4px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.aktuality-pagination .page-numbers:hover {
    background: #f0f0f0;
}

.aktuality-pagination .page-numbers.current {
    background: var(--color-primary);
    color: #fff;
}

.aktuality-empty {
    padding: 80px 0;
}

.aktuality-empty-icon {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.aktuality-empty h2 {
    font-family: var(--font-mono);
    color: var(--color-dark);
    margin-bottom: 10px;
}

.aktuality-empty p {
    color: var(--color-text-light);
}

/* ==========================================================================
   Aktuality – Single Post Detail
   ========================================================================== */

.aktuality-detail-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
}

.aktuality-breadcrumb {
    margin-bottom: 20px;
}

.aktuality-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
}

.aktuality-breadcrumb a:hover {
    color: #fff;
}

.aktuality-breadcrumb-sep {
    color: rgba(255,255,255,0.4);
    margin: 0 8px;
    font-size: 14px;
}

.aktuality-breadcrumb-current {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.aktuality-detail-title {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.aktuality-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.aktuality-detail-meta span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.aktuality-detail-meta span i {
    margin-right: 6px;
}

.aktuality-detail-meta a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.aktuality-detail-content {
    padding: 80px 0;
}

.aktuality-detail-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.aktuality-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.aktuality-detail-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
}

.aktuality-detail-body h2 {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.aktuality-detail-body h3 {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
}

.aktuality-detail-body p {
    margin-bottom: 20px;
}

.aktuality-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.aktuality-detail-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 16px 24px;
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--color-text-light);
}

.aktuality-detail-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 50px;
}

.aktuality-detail-nav-prev,
.aktuality-detail-nav-next {
    flex: 1;
}

.aktuality-detail-nav-next {
    text-align: right;
}

.aktuality-detail-nav a {
    text-decoration: none;
    display: block;
}

.aktuality-nav-label {
    font-size: 13px;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 4px;
}

.aktuality-nav-title {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

.aktuality-detail-nav a:hover .aktuality-nav-title {
    color: var(--color-primary);
}

/* ==========================================================================
   Degustační večery Page
   ========================================================================== */

.degustace-hero {
    background-color: #EEEFE9;
}

.degustace-hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.degustace-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.degustace-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.degustace-hero-text {
    font-family: var(--font-sans);
    font-size: 17px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.degustace-hero-image {
    height: 100%;
    min-height: 450px;
}

.degustace-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.degustace-features {
    padding: 100px 0;
}

.degustace-section-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
}

.degustace-card {
    text-align: center;
    height: 100%;
    padding: 30px 20px;
}

.degustace-card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.degustace-card-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.degustace-card-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.65;
}

.degustace-howto {
    padding: 100px 0;
    background: #EEEFE9;
}

.degustace-steps {
    margin-top: 30px;
}

.degustace-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.degustace-step:last-child {
    margin-bottom: 0;
}

.degustace-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
}

.degustace-step-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.degustace-step-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.degustace-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.degustace-info-title {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.degustace-info-title i {
    color: var(--color-primary);
    margin-right: 8px;
}

.degustace-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.degustace-info-list li {
    font-size: 15px;
    color: var(--color-text);
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.degustace-info-list li:last-child {
    border-bottom: none;
}

.degustace-info-list a {
    color: var(--color-primary);
    text-decoration: none;
}

.degustace-info-list a:hover {
    text-decoration: underline;
}

.degustace-pipa {
    padding: 80px 0;
}

.degustace-pipa-content {
    max-width: 600px;
    margin: 0 auto;
}

.degustace-pipa-icon {
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.degustace-pipa-text {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Firemní akce Page
   ========================================================================== */

.firemni-hero {
    background-color: #EEEFE9;
}

.firemni-hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.firemni-hero-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.firemni-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.firemni-hero-text {
    font-family: var(--font-sans);
    font-size: 17px;
    color: #52525B;
    line-height: 1.7;
    margin-bottom: 30px;
}

.firemni-hero-image {
    height: 100%;
    min-height: 450px;
}

.firemni-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.firemni-features {
    padding: 100px 0;
}

.firemni-section-title {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
}

.firemni-card {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.firemni-card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

.firemni-card-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.firemni-card-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.firemni-types {
    padding: 100px 0;
    background: #EEEFE9;
}

.firemni-type-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.firemni-type-card:hover {
    transform: translateY(-3px);
}

.firemni-type-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.firemni-type-title i {
    color: var(--color-primary);
    margin-right: 8px;
}

.firemni-type-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ==========================================================================
   GDPR / Ochrana osobních údajů Page
   ========================================================================== */

.gdpr-hero {
    background-color: var(--color-primary);
    padding: 80px 0 60px;
    text-align: center;
}

.gdpr-hero-title {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.gdpr-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.gdpr-content {
    padding: 80px 0;
}

.gdpr-block {
    margin-bottom: 40px;
}

.gdpr-block:last-child {
    margin-bottom: 0;
}

.gdpr-block h2 {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.gdpr-block p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.gdpr-block ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.gdpr-block ul li {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 8px;
}

.gdpr-block a {
    color: var(--color-primary);
    text-decoration: none;
}

.gdpr-block a:hover {
    text-decoration: underline;
}

.gdpr-updated {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px 24px;
}

.gdpr-updated p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive – New Pages
   ========================================================================== */

@media (max-width: 991px) {
    .aktuality-hero-title,
    .degustace-hero-title,
    .firemni-hero-title {
        font-size: 36px;
    }

    .degustace-hero-content,
    .firemni-hero-content {
        padding: 60px 24px;
    }

    .degustace-hero-image,
    .firemni-hero-image {
        min-height: 300px;
    }

    .degustace-features,
    .firemni-features,
    .degustace-howto,
    .firemni-types {
        padding: 70px 0;
    }

    .aktuality-detail-title {
        font-size: 32px;
    }

    .gdpr-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .aktuality-hero {
        padding: 60px 0 40px;
    }

    .aktuality-hero-title {
        font-size: 30px;
    }

    .aktuality-listing {
        padding: 50px 0;
    }

    .aktuality-card-image {
        height: 180px;
    }

    .degustace-hero-content,
    .firemni-hero-content {
        padding: 50px 20px;
    }

    .degustace-hero-title,
    .firemni-hero-title {
        font-size: 30px;
    }

    .degustace-hero-subtitle,
    .firemni-hero-subtitle {
        font-size: 18px;
    }

    .degustace-hero-image,
    .firemni-hero-image {
        min-height: 250px;
    }

    .degustace-features,
    .firemni-features,
    .degustace-howto,
    .firemni-types {
        padding: 50px 0;
    }

    .degustace-section-title,
    .firemni-section-title {
        font-size: 26px;
    }

    .aktuality-detail-hero {
        padding: 60px 0 40px;
    }

    .aktuality-detail-title {
        font-size: 26px;
    }

    .aktuality-detail-content {
        padding: 50px 0;
    }

    .aktuality-detail-nav {
        flex-direction: column;
    }

    .aktuality-detail-nav-next {
        text-align: left;
    }

    .gdpr-hero {
        padding: 60px 0 40px;
    }

    .gdpr-hero-title {
        font-size: 26px;
    }

    .gdpr-content {
        padding: 50px 0;
    }

    .gdpr-block h2 {
        font-size: 20px;
    }
}
