/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header h4,
.page-header h5,
.page-header h6 {
    text-align: center;
}

.post-header h1,
.post-header h2,
.post-header h3,
.post-header h4,
.post-header h5,
.post-header h6 {
    text-align: center;
}

.post-header h1 {
    font-size: clamp(2.1rem, 2.4vw + 1.5rem, 2.6rem);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo {
    height: 60px;
    margin-top: 8px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #CF7E38;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #CF7E38;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--active {
    color: #CF7E38;
}

.nav-link--active::after {
    width: 100%;
}

.dropdown-content a.nav-link--active {
    color: #CF7E38;
    font-weight: 600;
    text-decoration: underline;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #555;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #CF7E38;
    padding-left: 25px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #555;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section with Slideshow */
.hero {
    margin-top: 80px;
    position: relative;
    height: 780px;
    overflow: hidden;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translate(-50%, 0);
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 5;
    cursor: pointer;
    background: none;
    border: none;
    appearance: none;
    -webkit-appearance: none;
}

.scroll-cue--visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-cue--bounce {
    animation: scrollCueWave 2.6s ease-in-out 3;
}

.scroll-cue--dismissed {
    display: none;
}

.scroll-cue:hover {
    color: #ffffff;
}

.scroll-cue:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.scroll-cue__arrow {
    position: relative;
    width: 20px;
    height: 12px;
}

.scroll-cue__arrow::before,
.scroll-cue__arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 0;
    border-bottom: 2px solid currentColor;
    transform-origin: center;
}

.scroll-cue__arrow::before {
    transform: translate(-50%, 0) rotate(40deg);
}

.scroll-cue__arrow::after {
    transform: translate(-50%, 0) rotate(-40deg);
}

@keyframes scrollCueWave {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slideshow-container.is-ready {
    opacity: 1;
}


.slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden; /* Prevent flickering */
}

.slide.active {
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
    object-position: center 65%;
}


/* Slideshow Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px 20px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 0 8px 8px 0;
    user-select: none;
    transition: all 0.3s ease;
    /* Aby zmizely stačí dát do mínusu */
    z-index: 100;
}

.next {
    right: 0;
    border-radius: 6px 0 0 4px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    /* Aby zmizely stačí dát do mínusu */
    z-index: -100;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #CF7E38;
    transform: scale(1.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background-color: #CF7E38;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    padding: 5px 5px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #CF7E38;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-top: 5px;
    line-height: 1.8;
}

.feature-card--media {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.feature-card__media {
    width: 100%;
    padding: 2px;
    border-radius: 6px;
    background-color: #f2f2f2;
    overflow: hidden;
}

.feature-card__media img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 2000px;
    object-fit: contain;
    border-radius: 6px;
}

.feature-card--wide {
    grid-column: auto;
}

.feature-card--narrow {
    grid-column: auto;
}

@media screen and (min-width: 768px) {
    .feature-card--wide {
        grid-column: span 3;
    }

    .feature-card--narrow {
        grid-column: span 1;
    }
}

/* Footer */
.footer { 
    background-color: #ffffff;
    color: #2e3b4a;
    padding: 14px 0 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 6px;
    justify-items: center;
    align-items: start;
    justify-content: center;
}

.footer-section {
    text-align: left;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-section h4 {
    font-size: 0.78rem;
    margin-bottom: 2px;
    color: #3a4753;
}

.footer-brand,
.footer-section p,
.footer-section a,
.footer-section span {
    text-align: left;
}

.footer-brand {
    font-size: 0.7rem;
    font-weight: 600;
    color: #3a4753;
    margin: 0;
    white-space: nowrap;
}

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

.footer-section ul li {
    margin-bottom: 2px;
    font-size: 0.78rem;
}

.footer-section a {
    color: #3a4753;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a,
.footer-section span,
.footer-section p {
    font-size: 0.78rem;
}

.footer-section a:hover {
    color: #CF7E38;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 8px;
    display: flex;
    justify-content: center;
}
.footer-bottom p {
    margin: 0;
    color: #6b7786;
    font-size: 0.7rem;
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.social-link .icon--hover { opacity: 0; }
.social-link:hover .icon--hover { opacity: 1; }

.social-link .icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s ease;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.social-link {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding-top: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        border-radius: 0;
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: none;
    }

    .hero {
        height: 620px;
    }

    .scroll-cue {
        width: 32px;
        height: 32px;
        bottom: 12px;
    }

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

    .prev, .next {
        padding: 12px 16px;
        font-size: 20px;
    }

    .novinky-section,
    .blog-section {
        padding: 60px 0 80px;
    }

    .novinky-grid,
    .blog-grid {
        gap: 28px;
    }

    .post-header {
        padding: 20px 16px 0;
    }

    .post-title {
        font-size: 2.2rem;
    }

    .post-hero {
        width: 100%;
        height: 240px;
        border-radius: 0;
    }

    .post-body,
    .vrh-article {
        padding: 0 16px;
        max-width: 100%;
    }

    .post-back {
        width: 100%;
        padding: 12px 16px 0;
    }

    .post-back__link {
        font-size: 0.88rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        height: 480px;
    }

    .features h2 {
        font-size: 2rem;
    }

    .prev, .next {
        padding: 10px 14px;
        font-size: 18px;
    }

    .scroll-cue {
        width: 28px;
        height: 28px;
        bottom: 10px;
    }

    .novinky-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .litter-overview__grid {
        gap: 32px;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-paragraph {
        font-size: 1rem;
    }

    .post-subheading {
        font-size: 1.6rem;
    }

    .post-hero {
        height: 200px;
    }

    .novinka-card__content {
        padding: 0 12px 18px;
    }

    .novinka-card .feature-card__media img {
        height: 200px;
    }

    .litter-article__media {
        height: 160px;
    }
}
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;   /* zabere volné místo */
}
.contact-page {
    padding: 0px 0 60px;        /* vyrovná fixed menu + mezery */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-card,
.contact-map {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
}

.contact-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 6px;
}

/* Novinky */
.novinky-page,
.blog-page {
    background: #f7f8fa;
}

.novinky-page .hero,
.blog-page .hero {
    margin-top: 80px;
}


.novinky-section,
.blog-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.novinky-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}



.novinka-card {
    padding: 0;
    height: 100%;
    border-top: 4px solid #CF7E38;
    border-radius: 8px;
    overflow: hidden;
}

.novinka-card.feature-card--media {
    gap: 0;
    align-items: stretch;
    text-align: left;
}

.novinka-card--span-2 {
    grid-column: span 2;
}

.novinka-card--span-3 {
    grid-column: 1 / -1;
}

.novinka-card--image-only {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    border-top: none;
}

.novinka-card__link--image-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    background: none;
    border-radius: inherit;
}

.novinka-card__image-only {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novinka-card__image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.novinka-card__link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.novinka-card__link--disabled {
    cursor: default;
}

.novinka-card__title {
    margin: 0;
    padding: 10px 16px;
    font-size: 1rem !important;
    color: #1f2d3d;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.novinka-card .feature-card__media {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.novinka-card .feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.novinka-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.novinka-card__tag {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #CF7E38;
    background: rgba(207, 126, 56, 0.12);
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
}

.novinka-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 22px 22px;
    text-align: left;
    flex: 1;
}

.novinka-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: flex-start;
    align-items: flex-start;
}

.novinka-card__date {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a8795;
    font-weight: 600;
}


.novinka-card__excerpt {
    color: #475566;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(207, 126, 56, 0.14);
    color: #CF7E38;
    padding: 6px 14px;
    border-radius: 999px;
}

.novinky-status,
.blog-status {
    text-align: center;
    font-size: 1.05rem;
    color: #5b6672;
    grid-column: 1 / -1;
}

.novinky-status--error,
.blog-status--error {
    color: #c0392b;
}

.novinky-status--empty,
.blog-status--empty {
    color: #7a8795;
}

/* Post */
.post-page {
    margin-top: 0;
    padding-bottom: 100px;
    background: #f7f8fa;
}

.post-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.post-back {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 24px 0;
}

.post-back__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CF7E38;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.post-back__link:hover,
.post-back__link:focus-visible {
    color: #a75e26;
    transform: translateX(-2px);
    outline: none;
}

.post-back__icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: 2px;
}

.post-back__text {
    letter-spacing: 0.12em;
}

.post {
    display: grid;
    gap: 32px;
    width: 100%;
}

.post-header {
    padding: 16px 0 0;
    display: grid;
    gap: 24px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    color: #7a8795;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 4px;
}

.post-meta__date {
    font-weight: 600;
    color: #2c3e50;
}

.post-title {
    font-size: 3rem;
    color: #1f2d3d;
    letter-spacing: 0.02em;
}

.post-hero {
    margin: 0;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    height: 320px;
    background: none;
    overflow: hidden;
}

.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-hero__caption {
    display: none;
}

.post-body,
.vrh-article {
    display: grid;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 24px;
}

.vrh-article__paragraph {
    margin: 0;
}

.vrh-article__banner {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vrh-article__caption {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7786;
}

.post-paragraph {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #2e3b4a;
}

.post-subheading {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 24px;
    color: #1f2d3d;
}

.post-image {
    margin: 26px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.post-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.post-image--contain {
    overflow: visible;
}

.post-image--contain img {
    object-fit: contain;
    max-height: none;
    height: auto;
}

.post-image--natural {
    overflow: visible;
    box-shadow: none;
}

.post-image--natural img {
    max-height: none;
    height: auto;
}

.post-image__caption {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #6b7786;
    background: rgba(0, 0, 0, 0.03);
}

.post-quote {
    margin: 28px 0;
    padding: 24px 28px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1f2d3d;
    background: #fff7f0;
    border-left: 6px solid #CF7E38;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(207, 126, 56, 0.18);
}

.post-quote__cite {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a96c36;
}

.post-list {
    margin: 16px 0 0;
    padding-left: 24px;
    color: #2e3b4a;
    line-height: 1.7;
}

.post-status {
    text-align: center;
    color: #5b6672;
    padding: 40px 0;
    font-size: 1.05rem;
}

.post-status--error {
    color: #c0392b;
}

.post-status--empty {
    color: #7a8795;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    background: #CF7E38;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(207, 126, 56, 0.28);
}

.button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(207, 126, 56, 0.35);
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button--primary {
    background: #CF7E38;
    color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #b8682c;
}

.button--ghost {
    background: transparent;
    color: #CF7E38;
    border: 2px solid #CF7E38;
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: rgba(207, 126, 56, 0.1);
    color: #b8682c;
}

.button--ghost:disabled {
    border-color: rgba(207, 126, 56, 0.4);
}

/* Static Pages */
.page-main {
    margin-top: 80px;
    background: #f7f8fa;
}

.page-main .hero {
    margin-top: 0;
}

.page-header {
    padding: 60px 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.15rem;
    color: #566474;
    max-width: 720px;
    margin: 0 auto;
}

.page-content {
    padding: 0 0 80px;
}

.page-article {
    display: grid;
    gap: 28px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #2e3b4a;
}

.page-article h2 {
    font-size: 2rem;
    color: #1f2d3d;
    margin-top: 12px;
}

.page-article ul {
    padding-left: 20px;
    color: #2e3b4a;
    line-height: 1.7;
}

.reservation-page .reservation-section {
    display: grid;
    gap: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2e3b4a;
}

.reservation-section h2 {
    font-size: 2rem;
    color: #1f2d3d;
}

.reservation-section--two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
}

.reservation-list {
    list-style: disc;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.reservation-parallax {
    padding: 40px 0 60px;
}

.reservation-parallax .parallax-banner {
    max-width: 1000px;
    margin: 20px auto 10px;
}

.reservation-parallax .parallax-caption {
    max-width: 700px;
    margin: 0 auto;
}

.reservation-cta {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f9 100%);
    text-align: center;
}

.reservation-cta .container {
    display: grid;
    gap: 18px;
    max-width: 720px;
}

.reservation-cta h2 {
    font-size: 2.4rem;
    color: #1f2d3d;
}

.reservation-cta p {
    font-size: 1.1rem;
    color: #566474;
    margin: 0 auto;
}

.reservation-cta__button {
    justify-self: center;
    padding: 18px 36px;
    border-radius: 8px;
    background: #CF7E38;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(207, 126, 56, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reservation-cta__button:hover,
.reservation-cta__button:focus-visible {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(207, 126, 56, 0.35);
    background: #b8682c;
}

.reservation-form {
    margin-top: 28px;
}

.reservation-form iframe {
    width: 100%;
    min-height: 760px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.freya-info {
    display: grid;
    gap: 20px;
    align-items: start;
}

.freya-info__figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.freya-info__figure img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.freya-info__figure figcaption {
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #566474;
    background: rgba(0, 0, 0, 0.03);
}

.freya-info__summary {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2e3b4a;
}

.freya-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.freya-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    padding: 28px 26px;
    display: grid;
    gap: 18px;
}

.freya-card h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #1f2d3d;
}

.freya-details {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 28px;
    row-gap: 12px;
    margin: 0;
    justify-content: center;
    text-align: left;
    align-items: baseline;
}

.freya-details dt {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a8795;
    font-weight: 600;
    text-align: right;
    line-height: 1.6;
}

.freya-details dd {
    margin: 0;
    font-size: 1rem;
    color: #2e3b4a;
    max-width: 360px;
    line-height: 1.6;
}

.freya-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #445463;
}

.freya-story {
    display: grid;
    gap: 16px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2e3b4a;
}

.freya-story h2 {
    font-size: 2rem;
    color: #1f2d3d;
    margin: 0;
}

.post-parallax {
    display: grid;
    gap: 10px;
}

.post-parallax .parallax-banner {
    margin: 0;
}

.post-gallery {
    padding: 70px 0 60px;
}



.freya-banner {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 10px 0 24px;
}

.freya-banner--compact {
    height: 220px;
}

.freya-profile {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.freya-gallery {
    padding: 70px 0 90px;
}

@media (min-width: 900px) {
    .freya-info {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .freya-details {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .freya-details dt {
        text-align: center;
    }

    .freya-details dd {
        max-width: none;
    }
}

.parallax-banner {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 20px 0 10px;
}

.parallax-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.parallax-caption {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7786;
}

@media (max-width: 768px) {
    .parallax-banner {
        background-attachment: scroll;
        height: 240px;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }

    .page-header p {
        font-size: 1.05rem;
    }

    .reservation-section--two-column {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .reservation-cta {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .parallax-banner {
        height: 200px;
    }

    .page-article {
        font-size: 1rem;
        gap: 22px;
    }

    .reservation-section h2 {
        font-size: 1.8rem;
    }

    .reservation-cta h2 {
        font-size: 2rem;
    }

}

/* Guides */
.guide-section {
    padding: 50px 0 80px;
}

.guide-list {
    display: grid;
    gap: 28px;
}

.guide-card {
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.guide-card__link {
    display: grid;
    grid-template-columns: minmax(200px, 320px) 1fr;
    gap: 24px;
    color: inherit;
    text-decoration: none;
    align-items: stretch;
}

.guide-card__link--disabled {
    cursor: default;
}

.guide-card__link--compact {
    grid-template-columns: 1fr;
}

.guide-card__media {
    position: relative;
}

.guide-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guide-card__body {
    padding: 26px 28px;
    display: grid;
    gap: 14px;
}

.guide-card__body h3 {
    font-size: 1.5rem;
    color: #1f2d3d;
}

.guide-card__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #445463;
}

.guide-table {
    margin: 28px 0;
    overflow-x: auto;
}

.guide-table__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.guide-table__caption {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: #1f2d3d;
    font-size: 1rem;
}

.guide-table__table thead {
    background: #f4f6f9;
}

.guide-table__table th,
.guide-table__table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.96rem;
    color: #2e3b4a;
    border-bottom: 1px solid rgba(31, 45, 61, 0.08);
    vertical-align: top;
}

.guide-table__table th {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a8795;
    font-weight: 700;
}

.guide-table__table tbody tr:nth-child(even) {
    background: rgba(31, 45, 61, 0.03);
}

.guide-link {
    color: #CF7E38;
    text-decoration: none;
    font-weight: 600;
}

.guide-link:hover {
    color: #a4632b;
    text-decoration: underline;
}

.gallery-modal-trigger {
    cursor: zoom-in;
}

@media (max-width: 720px) {
    .guide-table__table {
        min-width: 0;
    }

    .guide-table__table th,
    .guide-table__table td {
        padding: 12px 14px;
    }

    .gallery-modal__figure img {
        max-width: 100%;
        max-height: calc(100vh - 160px);
    }
}

.guide-status {
    text-align: center;
    font-size: 1.05rem;
    color: #5b6672;
}

.guide-status--empty {
    color: #7a8795;
}

.guide-status--error {
    color: #c0392b;
}

@media (max-width: 900px) {
    .guide-card__link {
        grid-template-columns: 1fr;
    }

    .guide-card__media {
        height: 220px;
    }
}

/* Vrh timeline */
.vrh-timeline-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.vrh-heading {
    text-align: center;
    font-size: 2.4rem;
    color: #1f2d3d;
    margin-bottom: 48px;
    position: relative;
}

.vrh-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: #CF7E38;
    border-radius: 2px;
}

.litter-overview {
    padding: 50px 0 70px;
}

.litter-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
}

.litter-overview h2 {
    font-size: 2rem;
    color: #1f2d3d;
    margin-bottom: 22px;
}

.litter-timeline__list {
    position: relative;
    padding-left: 28px;
    display: grid;
    gap: 22px;
}

.litter-articles__list {
    display: grid;
    gap: 28px;
}

.litter-timeline__list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(207, 126, 56, 0.18), rgba(207, 126, 56, 0.65));
}

.litter-timeline__entry {
    position: relative;
}

.litter-timeline__marker {
    position: absolute;
    left: -18px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #CF7E38;
    background: #fff;
}

.litter-timeline__card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.litter-timeline__card figure {
    margin: 0;
}

.litter-timeline__card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.litter-timeline__body {
    padding: 18px 20px 22px;
    display: grid;
    gap: 10px;
}

.litter-timeline__body h3 {
    margin: 0;
    text-align: left;
}

.litter-timeline__date {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a8795;
}

.litter-timeline__text {
    margin: 0;
    color: #475463;
    line-height: 1.6;
}

.litter-timeline__link {
    justify-self: flex-start;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #CF7E38;
    text-decoration: none;
    font-weight: 600;
}

.litter-timeline__link:hover {
    color: #a9642d;
}


.litter-article {
    display: grid;
    gap: 18px;
    padding: 24px 26px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.litter-article__body {
    display: grid;
    gap: 14px;
}

.litter-article__title {
    font-size: 1.25rem;
    color: #1f2d3d;
    text-align: left;
}

.litter-article__title a {
    color: inherit;
    text-decoration: none;
}

.litter-article__title a:hover {
    color: #CF7E38;
}

.litter-article__date {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a8795;
}

.litter-article__paragraph {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #455263;
    margin: 0;
}

.litter-article__media {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.litter-divider {
    padding: 20px 0 60px;
}

.litter-divider span {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.litter-status {
    text-align: center;
    font-size: 1.05rem;
    color: #5b6672;
}

.litter-status--empty {
    color: #7a8795;
}

.litter-status--error {
    color: #c0392b;
}

.vrh-timeline {
    position: relative;
    display: grid;
    gap: 40px;
    padding: 0 0 0 24px;
}

.vrh-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(207, 126, 56, 0.2), rgba(207, 126, 56, 0.7));
}

.vrh-step {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 16px;
}

.vrh-step--right {
    justify-content: flex-start;
}

.vrh-step__marker {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #CF7E38;
    box-shadow: 0 0 0 6px rgba(207, 126, 56, 0.12);
}

.vrh-step__card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 0;
    width: 100%;
    min-height: var(--vrh-step-height, 320px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vrh-step__card--disabled {
    cursor: default;
    text-decoration: none;
}

.vrh-step__card--image-only {
    display: flex;
    grid-template-columns: none;
    padding: 0;
}

.vrh-step__card--image-only .vrh-step__media {
    width: 100%;
    height: 100%;
    min-height: var(--vrh-step-height, 320px);
}

.vrh-step__media {
    height: 100%;
}

.vrh-step__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vrh-step__media--contain {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vrh-step__media--contain img {
    object-fit: cover;
}

.vrh-step__body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vrh-step__date {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: #7a8795;
    text-transform: uppercase;
}

.vrh-step__title {
    font-size: 1.5rem;
    color: #1f2d3d;
    text-align: left;
}

.vrh-step__text {
    color: #465463;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1 1 auto;
}

.vrh-step__card:hover,
.vrh-step__card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    outline: none;
}

.vrh-timeline__status {
    text-align: center;
    font-size: 1.05rem;
    color: #5b6672;
}

.vrh-timeline__status--empty {
    color: #7a8795;
}

.vrh-timeline__status--error {
    color: #c0392b;
}

@media (max-width: 900px) {
    .vrh-step__card {
        grid-template-columns: 1fr;
        min-height: var(--vrh-step-height-mobile, 360px);
    }

    .vrh-step__media {
        max-height: 220px;
    }

    .litter-overview__grid {
        grid-template-columns: 1fr;
    }

    .litter-article__media {
        height: 180px;
        background-attachment: scroll;
    }

    .novinka-card--span-2,
    .novinka-card--span-3 {
        grid-column: span 1;
    }

    .novinka-card__link--image-only {
        padding: 14px;
    }
}


.vrh-c-timeline {
    position: relative;
    display: grid;
    gap: 36px;
    padding: 40px 0 60px;
}

.vrh-c-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #CF7E38;
}

.vrh-c-timeline__entry {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-left: 70px;
}

.vrh-c-timeline__marker {
    position: absolute;
    left: 28px;
    top: 28px;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #CF7E38;
    box-shadow: 0 0 0 4px rgba(207, 126, 56, 0.2);
}

.vrh-c-timeline__card {
    display: flex;
    gap: 18px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    padding: 18px 20px;
    flex: 1;
}

.vrh-c-timeline__media {
    flex-shrink: 0;
    width: 140px;
    height: 110px;
    overflow: hidden;
    border-radius: 6px;
    background: #f3f5f8;
}

.vrh-c-timeline__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vrh-c-timeline__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vrh-c-timeline__title {
    margin: 0;
    font-size: 1.15rem;
    color: #1f2d3d;
}

.vrh-c-timeline__date {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a8795;
    font-weight: 600;
}

.vrh-c-timeline__text {
    margin: 0;
    color: #475566;
    font-size: 0.93rem;
    line-height: 1.6;
}

.vrh-c-timeline__card .vrh-c-timeline__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .vrh-c-timeline {
        gap: 28px;
        padding: 30px 0 40px;
    }

    .vrh-c-timeline__entry {
        padding-left: 58px;
        gap: 18px;
    }

    .vrh-c-timeline::before {
        left: 22px;
    }

    .vrh-c-timeline__marker {
        left: 22px;
    }

    .vrh-c-timeline__card {
        flex-direction: column;
        gap: 14px;
    }

    .vrh-c-timeline__media {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 540px) {
    .vrh-c-timeline__entry {
        padding-left: 48px;
    }

    .vrh-c-timeline::before {
        left: 18px;
    }

    .vrh-c-timeline__marker {
        left: 18px;
        width: 12px;
        height: 12px;
    }

    .vrh-c-timeline__card {
        padding: 16px;
    }

    .vrh-c-timeline__title {
        font-size: 1.05rem;
    }
}
.vrh-gallery {
    padding: 60px 0 80px;
}

.vrh-gallery__heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 36px;
    color: #1f2d3d;
}

.vrh-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.vrh-gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.vrh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.vrh-gallery__item:hover img {
    transform: scale(1.05);
}

.vrh-gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    color: #fff;
    font-size: 0.9rem;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 30, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 40px 20px;
    overflow: auto;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal__figure {
    max-width: min(1024px, 100vw - 120px);
    margin: 0;
    display: grid;
    justify-items: center;
    gap: 12px;
}

.gallery-modal__figure img {
    max-width: min(1024px, 100vw - 160px);
    max-height: calc(100vh - 200px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #fff;
    transition: transform 0.2s ease;
}

.gallery-modal__close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 32px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 38px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-modal__controls {
    position: absolute;
    bottom: 28px;
    right: 32px;
    display: inline-flex;
    gap: 12px;
    z-index: 5;
}

.gallery-modal__control {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-modal__control:hover,
.gallery-modal__control:focus-visible {
    outline: none;
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-1px);
}

.gallery-modal__nav--prev { left: 40px; }
.gallery-modal__nav--next { right: 40px; }

.gallery-modal__nav:hover,
.gallery-modal__close:hover {
    background: rgba(207, 126, 56, 0.6);
}

@media (max-width: 640px) {
    .gallery-modal__nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .gallery-modal__nav--prev { left: 16px; }
    .gallery-modal__nav--next { right: 16px; }

    .gallery-modal__controls {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .gallery-modal__control {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

.contact-heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 48px;
    color: #333;
}

.contact-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 24px;
    font-size: 1.05rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: 28px auto;
    column-gap: 14px;
    align-items: start;
    line-height: 1.5;
}

.contact-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-top: 4px;
}
.contact-adress {
    margin-top: -6px;
    font-weight: 600;   /* pokud chceš zachovat tučný vzhled jako H4 */
}
.contact-info {
    margin-top: 5px;
    font-weight: 600;   /* pokud chceš zachovat tučný vzhled jako H4 */
}
.novinky-heading {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.novinky-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    background-color: #CF7E38;
    border-radius: 2px;
}
.about-subtitle {
    font-weight: 400;
    color: #000000;
    width: 1000px;
    margin: 0 auto;
}
