* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-main: "Montserrat", sans-serif;
    --font-heading: "Playfair Display", serif;
    --font-script: "Allura", cursive;

    --color-dark: #1A120E;
    --color-brown: #3A2418;
    --color-gold: #D6A84F;
    --color-cream: #F4E6C8;
    --color-white: #FFFFFF;
    --color-green: #174432;
}

body {
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

/* 404 page */
.error_page {
    min-height: 100vh;
    background: var(--color-dark);
    color: var(--color-white);
}

.error_main {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 160px 24px 72px;
}

.error_background,
.error_overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.error_background {
    object-fit: cover;
}

.error_overlay {
    background:
        linear-gradient(90deg, rgba(26, 18, 14, 0.96) 0%, rgba(26, 18, 14, 0.82) 52%, rgba(26, 18, 14, 0.68) 100%),
        rgba(0, 0, 0, 0.2);
}

.error_content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    text-align: center;
}

.error_kicker {
    display: inline-block;
    color: var(--color-gold);
    font-family: var(--font-script);
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1;
}

.error_code {
    margin: 8px 0 22px;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(112px, 22vw, 220px);
    font-weight: 800;
    line-height: 0.9;
    -webkit-text-stroke: 2px rgba(214, 168, 79, 0.62);
}

.error_content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
}

.error_text {
    max-width: 650px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.error_actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.error_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 14px 24px;
    border: 2px solid var(--color-gold);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.error_btn:hover {
    transform: translateY(-2px);
}

.error_btn_primary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.error_btn_secondary {
    color: var(--color-white);
}

.error_btn_secondary:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

@media (max-width: 640px) {
    .error_main {
        padding-top: 130px;
    }

    .error_code {
        margin-bottom: 18px;
    }

    .error_actions,
    .error_btn {
        width: 100%;
    }
}

.fa-solid,
.fa-regular,
.fa-brands {
    display: inline-block;
    min-width: 1em;
    text-align: center;
}

.site_header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 28px 0;
    align-items: center;
}

.navbar_logo {
    display: block;
}

.navbar_logo img {
    width: 140px;
    height: auto;
    display: block;
}

.navbar_menu {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar_link {
    text-decoration: none;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.navbar_link_active {
    color: var(--color-gold);
    position: relative;
}

.navbar_link_active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

.navbar_link:hover {
    color: var(--color-gold);
}

.navbar_phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 700;
    color: var(--color-dark);
    background-color: var(--color-gold);
    border-radius: 999px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.navbar_phone:hover {
    background-color: #e3b75d;
    transform: translateY(-2px);
}

.navbar_phone i {
    transition: transform 0.2s ease;
}

.navbar_phone:hover i {
    transform: rotate(-10deg) scale(1.08);
}

/* Navbar na podstrankach */

.site_header_subpage {
    position: fixed;
    background-color: rgba(26, 18, 14, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.site_header_subpage .navbar {
    padding: 18px 0;
}

.site_header_subpage .navbar_logo img {
    width: 115px;
}

.site_header_subpage .navbar_link {
    color: var(--color-white);
}

.site_header_subpage .navbar_link_active {
    color: var(--color-gold);
}

.site_header_subpage .navbar_link:hover {
    color: var(--color-gold);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark);
    color: var(--color-white);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero_background {
    position: absolute;
    inset: 0;
    z-index: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero_container {
    position: relative;
    z-index: 2;
    width: 84%;
    max-width: 1920px;
    margin: 0 auto;

    flex: 1;

    padding: 170px 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero_content {
    max-width: 620px;
}

.hero_kicker {
    font-family: var(--font-script);
    color: var(--color-gold);
    font-size: 72px;
    line-height: 0.95;
    margin-bottom: 28px;
}

.hero_title {
    font-size: 64px;
    line-height: 0.95;
    font-weight: 700;
    font-family: var(--font-heading);
    font-weight: lighter;
    margin-bottom: 28px;
}

.hero_text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 34px;
}

.hero_features {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 38px;

}

.hero_feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 15px;
    line-height: 1.45;
}

.hero_feature i {
    color: var(--color-gold);
    font-size: 30px;
}

.hero_buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 260px;
    padding: 18px 30px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.hero_btn_primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.24);
}

.hero_btn_primary:hover {
    background-color: #e3b75d;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(214, 168, 79, 0.32);
}

.hero_btn_secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--color-white);
    background-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
}

.hero_btn_secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(214, 168, 79, 0.08);
    transform: translateY(-2px);
}

.hero_badge {
    position: absolute;
    right: 10%;
    bottom: 20%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-white);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;

    text-transform: uppercase;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.25;

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.hero_badge::before {
    content: "";
    position: absolute;
    inset: -11px;
    border-radius: 50%;
    background: var(--color-green);
    z-index: -2;

    clip-path: polygon(50% 0%,
            54% 4%,
            59% 1%,
            63% 6%,
            68% 4%,
            71% 10%,
            77% 9%,
            79% 16%,
            85% 17%,
            86% 24%,
            92% 27%,
            91% 34%,
            96% 38%,
            93% 45%,
            98% 50%,
            93% 55%,
            96% 62%,
            91% 66%,
            92% 73%,
            86% 76%,
            85% 83%,
            79% 84%,
            77% 91%,
            71% 90%,
            68% 96%,
            63% 94%,
            59% 99%,
            54% 96%,
            50% 100%,
            46% 96%,
            41% 99%,
            37% 94%,
            32% 96%,
            29% 90%,
            23% 91%,
            21% 84%,
            15% 83%,
            14% 76%,
            8% 73%,
            9% 66%,
            4% 62%,
            7% 55%,
            2% 50%,
            7% 45%,
            4% 38%,
            9% 34%,
            8% 27%,
            14% 24%,
            15% 17%,
            21% 16%,
            23% 9%,
            29% 10%,
            32% 4%,
            37% 6%,
            41% 1%,
            46% 4%);
}

.hero_badge::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(214, 168, 79, 0.85);
    z-index: -1;
}

.hero_badge strong {
    display: block;
    max-width: 120px;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.2px;
}

.hero_badge small {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
}

.badge_decor {
    position: relative;
    width: 42px;
    height: 1px;
    background-color: rgba(214, 168, 79, 0.85);
}

.badge_decor::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background-color: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero_info {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: 3;

    width: 84%;
    max-width: 1920px;
    margin: 0 auto 34px;

    padding: 18px 20px;
    border-radius: 10px;
    background-color: rgba(255, 250, 240, 0.96);
    color: var(--color-dark);

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.hero_info_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-right: 1px solid rgba(26, 18, 14, 0.18);
    min-width: 0;
}

.hero_info_item div {
    min-width: 0;
}

.hero_info_item:last-child {
    border-right: none;
}

.hero_info_item i {
    font-size: 28px;
    color: var(--color-dark);
}

.hero_info_item span {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.hero_info_item strong,
.hero_info_item a {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 800;
}

.hero_info_item a {
    color: var(--color-green);
}

.navbar_toggle {
    display: none;
    border: none;
    background: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
}

/* Prechod PC - mobil */

@media (max-width: 1330px) {
    .navbar_menu {
        gap: 15px;

    }

    .navbar_link {
        font-size: 12.5px;
    }
}

/* Mobil */

@media (max-width: 1100px) {

    .navbar_menu,
    .navbar_phone {
        display: none;
    }

    .navbar_toggle {
        display: block;
    }

    .navbar {
        width: 90%;
        padding: 24px 0;
    }

    .navbar_logo img {
        width: 130px;
    }

    .hero_badge {
        display: none;
    }
}

/* Responsibilni navbar */

@media (max-width: 1100px) {
    .navbar_menu {
        position: fixed;
        inset: 0;
        z-index: 20;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 28px;
        background-color: rgba(26, 18, 14, 0.97);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar_menu.navbar_menu_open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar_link {
        font-size: 24px;
    }

    .navbar_link_active::after {
        bottom: -8px;
    }

    .navbar_toggle {
        position: relative;
        z-index: 30;
        display: block;
    }

    .navbar_phone {
        display: none;
    }


}

/* Repsonsibilni hero sekce */

@media (max-width: 1100px) {
    .hero {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }


    .hero_container {
        width: 86%;
        padding: 180px 0 180px;
        height: 100vh;
    }

    .hero_content {
        max-width: 560px;
    }

    .hero_kicker {
        font-size: 58px;
    }

    .hero_title {
        font-size: 52px;
    }

    .hero_text {
        font-size: 17px;
    }

    .hero_badge {
        width: 145px;
        height: 145px;
        right: 8%;
        top: 42%;
    }

    .hero_badge strong {
        font-size: 12px;
        max-width: 105px;
    }

    .hero_badge small {
        font-size: 11px;
    }

    .hero_info {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
    }

    .hero_info_item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 1100px) {
    .hero_overlay {
        background: linear-gradient(90deg,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.68) 100%);
    }

    .navbar_logo img {
        width: 100px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        background-position: center;
        text-align: center;
        padding-bottom: 24px;
    }

    .hero_container {
        width: 88%;
        padding: 170px 0 40px;
        display: block;
        min-height: 100vh;
    }

    .hero_content {
        max-width: 100%;
        margin-top: 0%;
    }

    .hero_kicker {
        font-size: 46px;
        margin-bottom: 16px;
    }

    .hero_title {
        font-size: 42px;
        line-height: 1;
        margin-bottom: 22px;
    }

    .hero_text {
        font-size: 16px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .hero_features {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .hero_feature {
        font-size: 15px;
        display: flex;
        justify-content: center;
        gap: 12px;
        width: 100%;

    }

    .hero_feature i {
        font-size: 26px;
    }

    .hero_buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hero_btn {
        justify-content: center;
        width: 100%;
        padding: 17px 22px;
    }

    .hero_badge {
        display: none;
    }

    .hero_info {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 88%;
        margin: 32px auto 0;
        display: flex;
        flex-direction: column;
        padding: 22px;
    }

    .hero_info_item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 18, 14, 0.15);
        padding-bottom: 16px;
    }

    .hero_info_item:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero_info_item i {
        font-size: 26px;
    }

    .hero_info_item span {
        font-size: 13px;
    }

    .hero_info_item strong,
    .hero_info_item a {
        font-size: 15px;
    }
}

/* FOTOGALERIE */

.gallery-section {
    padding: 90px 20px;
    background: #f6f1e9;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 620px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.section-heading h2 {
    font-family: var(--font-main);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.section-heading p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6f6258;
}

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-wrapper {
    width: 100%;
    height: clamp(320px, 58vw, 640px);
    overflow: hidden;
    border-radius: 28px;
    background: #ddd;
    box-shadow: 0 24px 60px rgba(43, 29, 20, 0.16);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.gallery-image.is-changing {
    opacity: 0;
    transform: scale(1.015);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.86);
    color: #2b1d14;
    font-size: 1.8rem;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.gallery-btn-prev {
    left: 22px;
}

.gallery-btn-next {
    right: 22px;
}

.gallery-info {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.gallery-count {
    min-width: 62px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #9b6b3d;
}

.gallery-caption {
    font-size: 1rem;
    line-height: 1.6;
    color: #4d4037;
    text-align: center;
}

/* ================= OSLAVY A AKCE ================= */

.events_section {
    padding: 90px 20px;
    background: #f6f1e9;
    color: var(--color-dark);
}

.events_container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.events_heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.events_label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.events_heading h2 {
    font-family: var(--font-main);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.events_heading p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(26, 18, 14, 0.74);
}

.events_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.events_card {
    display: flex;
    gap: 22px;
    padding: 30px;
    border-radius: 24px;

    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    box-shadow: 0 18px 48px rgba(58, 36, 24, 0.1);
}

.events_icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;

    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
}

.events_card h3 {
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.events_card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.72);
}

/* Brigáda / pracovní místa */

.events_work_box {
    margin-top: 28px;
    padding: 30px;

    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26, 18, 14, 0.96), rgba(58, 36, 24, 0.96));

    color: var(--color-white);

    display: flex;
    align-items: center;
    gap: 24px;

    box-shadow: 0 24px 70px rgba(26, 18, 14, 0.16);
}

.events_work_icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;

    border-radius: 50%;
    border: 2px solid rgba(214, 168, 79, 0.75);
    color: var(--color-gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.events_work_text {
    flex: 1;
}

.events_work_text span {
    display: block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-gold);
}

.events_work_text h3 {
    font-family: var(--font-main);
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.events_work_text p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.events_work_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 190px;
    padding: 16px 24px;

    border-radius: 999px;
    text-decoration: none;

    color: var(--color-dark);
    background-color: var(--color-gold);

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.events_work_btn i,
.events_work_btn span {
    color: var(--color-dark);
}

.events_work_btn:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 14px 30px rgba(214, 168, 79, 0.26);
}

/* ================= OSLAVY RESPONSIVITA ================= */

@media (max-width: 900px) {
    .events_section {
        padding: 80px 18px;
    }

    .events_content {
        grid-template-columns: 1fr;
    }

    .events_work_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .events_work_btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .events_section {
        padding: 70px 16px;
    }

    .events_heading {
        margin-bottom: 34px;
    }

    .events_heading p {
        font-size: 16px;
    }

    .events_card {
        flex-direction: column;
        padding: 26px 22px;
        border-radius: 20px;
    }

    .events_card h3 {
        font-size: 21px;
    }

    .events_work_box {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .events_work_text h3 {
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .events_section {
        padding: 64px 14px;
    }

    .events_work_text h3 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-section {
        padding: 70px 16px;
    }

    .gallery-image-wrapper {
        height: 360px;
        border-radius: 22px;
    }

    .gallery-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .gallery-btn-prev {
        left: 12px;
    }

    .gallery-btn-next {
        right: 12px;
    }

    .gallery-info {
        align-items: center;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-image-wrapper {
        height: 280px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
    }
}

/* DENNI MENU */

/* ================= DENNÍ MENU ================= */

.daily-menu-section {
    padding: 170px 20px 100px;
    background:
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.12), transparent 32%),
        linear-gradient(180deg, #f7efe2 0%, #f3e7d2 100%);
    color: var(--color-dark);
}

.daily-menu-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Nadpis */

.daily-menu-heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.daily-menu-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.daily-menu-heading h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.daily-menu-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.74);
}

/* Hlavní karta */

.daily-menu-card {
    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(58, 36, 24, 0.14);
}

/* Datum + otevírací doba */

.daily-menu-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 26px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(26, 18, 14, 0.14);
}

.daily-menu-meta div {
    min-width: 0;
}

.daily-menu-meta span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 18, 14, 0.58);
}

.daily-menu-meta strong {
    display: block;
    font-size: 21px;
    color: var(--color-dark);
}

.daily-menu-loading,
.daily-menu-error {
    padding: 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26, 18, 14, 0.62);
}

.daily-menu-error {
    color: #8a1f1f;
    font-weight: 700;
}

/* Poznámka */

.daily-menu-note {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: 14px;
    background-color: rgba(214, 168, 79, 0.12);
    border: 1px solid rgba(214, 168, 79, 0.22);
}

.daily-menu-note p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26, 18, 14, 0.78);
}

.daily-menu-note a {
    color: var(--color-green);
    font-weight: 800;
    text-decoration: none;
}

.daily-menu-note a:hover {
    text-decoration: underline;
}

/* Seznam jídel */

.daily-menu-list {
    width: 100%;
}

.daily-menu-header,
.daily-menu-item {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr) 95px;
    gap: 22px;
    align-items: center;
}

.daily-menu-header {
    padding: 0 0 14px;
    margin-bottom: 4px;
    border-bottom: 2px solid rgba(214, 168, 79, 0.45);
}

.daily-menu-header span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 18, 14, 0.55);
}

.daily-menu-header span:last-child {
    text-align: right;
}

.daily-menu-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 10px 0 7px;
}

.daily-menu-section-heading::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(214, 168, 79, 0.55), rgba(214, 168, 79, 0.08));
}

.daily-menu-section-heading span {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-green);
}

.daily-menu-item {
    padding: 18px 0;
    border-bottom: 1px dashed rgba(26, 18, 14, 0.2);
}

.daily-menu-weight {
    font-size: 15px;
    color: rgba(26, 18, 14, 0.68);
    white-space: nowrap;
}

.daily-menu-name {
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--color-dark);
}

.daily-menu-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-green);
    text-align: right;
    white-space: nowrap;
}

/* Spodní poznámka */

.daily-menu-bottom {
    margin-top: 24px;
    padding-top: 20px;
}

.daily-menu-bottom p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 18, 14, 0.56);
}

/* Odkazy pod menu */

.daily-menu-links {
    margin-top: 34px;
    text-align: center;
}

.daily-menu-links p {
    margin-bottom: 18px;
    font-size: 16px;
    color: rgba(26, 18, 14, 0.7);
}

.daily-menu-link-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.daily-menu-link-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    padding: 15px 24px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    color: var(--color-dark);
    background-color: var(--color-gold);

    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.22);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.daily-menu-link-buttons a:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 16px 34px rgba(214, 168, 79, 0.3);
}

/* ================= DENNÍ MENU RESPONSIVITA ================= */

@media (max-width: 900px) {
    .daily-menu-section {
        padding: 150px 18px 80px;
    }

    .daily-menu-card {
        padding: 28px;
        border-radius: 22px;
    }

    .daily-menu-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .daily-menu-meta strong {
        font-size: 19px;
    }

    .daily-menu-header,
    .daily-menu-item {
        grid-template-columns: 82px minmax(0, 1fr) 78px;
        gap: 16px;
    }

    .daily-menu-name,
    .daily-menu-price {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .daily-menu-section {
        padding: 150px 16px 70px;
    }

    .daily-menu-heading {
        margin-bottom: 34px;
    }

    .daily-menu-heading p {
        font-size: 16px;
    }

    .daily-menu-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .daily-menu-header {
        display: none;
    }

    .daily-menu-section-heading {
        margin-top: 18px;
        padding-top: 8px;
    }

    .daily-menu-section-heading span {
        font-size: 13px;
    }

    .daily-menu-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 14px;
        padding: 18px 0;
    }

    .daily-menu-name {
        grid-column: 1 / 2;
        grid-row: 1;
        font-size: 16px;
        line-height: 1.45;
    }

    .daily-menu-price {
        grid-column: 2 / 3;
        grid-row: 1;
        align-self: start;
        font-size: 16px;
        text-align: right;
    }

    .daily-menu-weight {
        grid-column: 1 / 3;
        grid-row: 2;
        font-size: 14px;
        color: rgba(26, 18, 14, 0.55);
    }

    .daily-menu-link-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .daily-menu-link-buttons a {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .daily-menu-section {
        padding: 160px 14px 64px;
    }

    .daily-menu-card {
        padding: 22px 18px;
    }

    .daily-menu-meta strong {
        font-size: 18px;
    }

    .daily-menu-note {
        padding: 14px 16px;
    }

    .daily-menu-name,
    .daily-menu-price {
        font-size: 15px;
    }
}

/* JIDELNI LISTEK */

.food_menu_section {
    padding: 170px 20px 100px;
    background:
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.12), transparent 32%),
        linear-gradient(180deg, #f7efe2 0%, #f3e7d2 100%);
    color: var(--color-dark);
}

.food_menu_container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Nadpis */

.food_menu_heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.food_menu_label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.food_menu_heading h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.food_menu_heading p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.74);
}

/* Karta jidelniho listku */

.food_menu_card {
    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(58, 36, 24, 0.14);
}

/* Horni informace */

.food_menu_intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 26px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(26, 18, 14, 0.14);
}

.food_menu_intro div {
    min-width: 0;
}

.food_menu_intro span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(26, 18, 14, 0.58);
}

.food_menu_intro strong {
    display: block;
    font-size: 21px;
    color: var(--color-dark);
}

/* Poznamka */

.food_menu_note {
    margin-bottom: 34px;
    padding: 16px 18px;
    border-radius: 14px;
    background-color: rgba(214, 168, 79, 0.12);
    border: 1px solid rgba(214, 168, 79, 0.22);
}

.food_menu_note p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26, 18, 14, 0.78);
}

/* Seznam jidel */

.food_menu_list {
    width: 100%;
}

.food_menu_category {
    margin-bottom: 44px;
}

.food_menu_category:last-child {
    margin-bottom: 0;
}

.food_menu_category h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-green);
    margin-bottom: 10px;
    padding: 8px 0 7px;
}

.food_menu_category h2::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(214, 168, 79, 0.55), rgba(214, 168, 79, 0.08));
}

.food_menu_item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 85px;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(26, 18, 14, 0.2);
}

.food_menu_weight {
    font-size: 15px;
    color: rgba(26, 18, 14, 0.68);
    white-space: nowrap;
}

.food_menu_name {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--color-dark);
}

.food_menu_price {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-green);
    text-align: right;
    white-space: nowrap;
}

.food_menu_item_without_weight .food_menu_weight,
.food_menu_item_without_price .food_menu_price {
    min-height: 1px;
}

/* Odkazy pod listkem */

.food_menu_links {
    margin-top: 34px;
    text-align: center;
}

.food_menu_links p {
    margin-bottom: 18px;
    font-size: 16px;
    color: rgba(26, 18, 14, 0.7);
}

.food_menu_link_buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.food_menu_link_buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    padding: 15px 24px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    color: var(--color-dark);
    background-color: var(--color-gold);

    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.22);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.food_menu_link_buttons a:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 16px 34px rgba(214, 168, 79, 0.3);
}

/* JIDELNI LISTEK RESPONSIBILITA */

@media (max-width: 900px) {
    .food_menu_container {
        padding-top: 100px;
    }

    .food_menu_section {
        padding: 130px 18px 80px;
    }

    .food_menu_heading h1 {
        font-size: 58px;
    }

    .food_menu_card {
        padding: 28px;
        border-radius: 22px;
    }

    .food_menu_intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .food_menu_intro strong {
        font-size: 19px;
    }

    .food_menu_item {
        grid-template-columns: 82px minmax(0, 1fr) 78px;
        gap: 16px;
    }

    .food_menu_name,
    .food_menu_price {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .food_menu_container {
        padding-top: 100px;
    }

    .food_menu_section {
        padding: 120px 16px 70px;
    }

    .food_menu_heading {
        margin-bottom: 34px;
    }

    .food_menu_heading h1 {
        font-size: 46px;
    }

    .food_menu_heading p {
        font-size: 16px;
    }

    .food_menu_card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .food_menu_category {
        margin-bottom: 38px;
    }

    .food_menu_category h2 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .food_menu_item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 14px;
        padding: 16px 0;
    }

    .food_menu_name {
        grid-column: 1 / 2;
        grid-row: 1;
        font-size: 16px;
        line-height: 1.45;
    }

    .food_menu_price {
        grid-column: 2 / 3;
        grid-row: 1;
        align-self: start;
        font-size: 16px;
        text-align: right;
    }

    .food_menu_weight {
        grid-column: 1 / 3;
        grid-row: 2;
        font-size: 14px;
        color: rgba(26, 18, 14, 0.55);
    }

    .food_menu_link_buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .food_menu_link_buttons a {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .food_menu_container {
        padding-top: 100px;
    }

    .food_menu_section {
        padding: 110px 14px 64px;
    }

    .food_menu_heading h1 {
        font-size: 40px;
    }

    .food_menu_card {
        padding: 22px 18px;
    }

    .food_menu_intro strong {
        font-size: 18px;
    }

    .food_menu_note {
        padding: 14px 16px;
    }

    .food_menu_name,
    .food_menu_price {
        font-size: 15px;
    }
}

/* NAPOJOVY LISTEK */

.drink_menu_section {
    padding: 170px 20px 100px;
    background:
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.12), transparent 32%),
        linear-gradient(180deg, #f7efe2 0%, #f3e7d2 100%);
    color: var(--color-dark);
}

.drink_menu_container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Nadpis */

.drink_menu_heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.drink_menu_label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.drink_menu_heading h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.drink_menu_heading p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.74);
}

/* Karta napojoveho listku */

.drink_menu_card {
    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(58, 36, 24, 0.14);
}

/* Horni informace */

.drink_menu_intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 26px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(26, 18, 14, 0.14);
}

.drink_menu_intro div {
    min-width: 0;
}

.drink_menu_intro span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(26, 18, 14, 0.58);
}

.drink_menu_intro strong {
    display: block;
    font-size: 21px;
    color: var(--color-dark);
}

/* Poznamka */

.drink_menu_note {
    margin-bottom: 34px;
    padding: 16px 18px;
    border-radius: 14px;
    background-color: rgba(214, 168, 79, 0.12);
    border: 1px solid rgba(214, 168, 79, 0.22);
}

.drink_menu_note p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26, 18, 14, 0.78);
}

/* Seznam napoju */

.drink_menu_list {
    width: 100%;
}

.drink_menu_category {
    margin-bottom: 44px;
}

.drink_menu_category:last-child {
    margin-bottom: 0;
}

.drink_menu_category h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-green);
    margin-bottom: 10px;
    padding: 8px 0 7px;
}

.drink_menu_category h2::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(214, 168, 79, 0.55), rgba(214, 168, 79, 0.08));
}

.drink_menu_item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 85px;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(26, 18, 14, 0.2);
}

.drink_menu_weight {
    font-size: 15px;
    color: rgba(26, 18, 14, 0.68);
    white-space: nowrap;
}

.drink_menu_name {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--color-dark);
}

.drink_menu_price {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-green);
    text-align: right;
    white-space: nowrap;
}

.drink_menu_item_without_weight .drink_menu_weight,
.drink_menu_item_without_price .drink_menu_price {
    min-height: 1px;
}

/* Odkazy pod listkem */

.drink_menu_links {
    margin-top: 34px;
    text-align: center;
}

.drink_menu_links p {
    margin-bottom: 18px;
    font-size: 16px;
    color: rgba(26, 18, 14, 0.7);
}

.drink_menu_link_buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.drink_menu_link_buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    padding: 15px 24px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    color: var(--color-dark);
    background-color: var(--color-gold);

    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.22);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.drink_menu_link_buttons a:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 16px 34px rgba(214, 168, 79, 0.3);
}

/* NAPOJOVY LISTEK RESPONSIBILITA */

@media (max-width: 900px) {
    .drink_menu_section {
        padding: 130px 18px 80px;
    }

    .drink_menu_heading h1 {
        font-size: 58px;
    }

    .drink_menu_card {
        padding: 28px;
        border-radius: 22px;
    }

    .drink_menu_intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .drink_menu_intro strong {
        font-size: 19px;
    }

    .drink_menu_item {
        grid-template-columns: 82px minmax(0, 1fr) 78px;
        gap: 16px;
    }

    .drink_menu_name,
    .drink_menu_price {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .drink_menu_section {
        padding: 150px 16px 70px;
    }

    .drink_menu_heading {
        margin-bottom: 34px;
    }

    .drink_menu_heading h1 {
        font-size: 46px;
    }

    .drink_menu_heading p {
        font-size: 16px;
    }

    .drink_menu_card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .drink_menu_category {
        margin-bottom: 38px;
    }

    .drink_menu_category h2 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .drink_menu_item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 14px;
        padding: 16px 0;
    }

    .drink_menu_name {
        grid-column: 1 / 2;
        grid-row: 1;
        font-size: 16px;
        line-height: 1.45;
    }

    .drink_menu_price {
        grid-column: 2 / 3;
        grid-row: 1;
        align-self: start;
        font-size: 16px;
        text-align: right;
    }

    .drink_menu_weight {
        grid-column: 1 / 3;
        grid-row: 2;
        font-size: 14px;
        color: rgba(26, 18, 14, 0.55);
    }

    .drink_menu_link_buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .drink_menu_link_buttons a {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .drink_menu_section {
        padding: 180px 14px 64px;
    }

    .drink_menu_heading h1 {
        font-size: 40px;
    }

    .drink_menu_card {
        padding: 22px 18px;
    }

    .drink_menu_intro strong {
        font-size: 18px;
    }

    .drink_menu_note {
        padding: 14px 16px;
    }

    .drink_menu_name,
    .drink_menu_price {
        font-size: 15px;
    }
}

/* KONTAKT */

.contact_section {
    padding: 155px 20px 100px;
    background:
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.12), transparent 32%),
        linear-gradient(180deg, #f7efe2 0%, #f3e7d2 100%);
    color: var(--color-dark);
}

.contact_container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Nadpis */

.contact_heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.contact_label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.contact_heading h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    line-height: 1;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.contact_heading p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.74);
}

/* Hlavni kontaktni karta */

.contact_card {
    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(58, 36, 24, 0.14);
}

.contact_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 18px;
    background-color: rgba(244, 230, 200, 0.42);
    border: 1px solid rgba(214, 168, 79, 0.22);
}

.contact_icon {
    width: 54px;
    height: 54px;
    margin-top: 2px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;

}

.contact_content {
    min-width: 0;
    padding-top: 1px;
}

.contact_content span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(26, 18, 14, 0.58);
}

.contact_content strong {
    display: block;
    font-size: 21px;
    line-height: 1.3;
    color: var(--color-dark);
}

.contact_content p {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(26, 18, 14, 0.68);
}

.contact_small_info {
    display: inline-flex;
    margin-top: 14px;
    padding: 9px 13px;
    border-radius: 999px;
    background-color: rgba(214, 168, 79, 0.16);
    color: var(--color-green);
    font-size: 14px;
    font-weight: 800;
}

.contact_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 18px;
    padding: 13px 20px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    color: var(--color-dark);
    background-color: var(--color-gold);

    box-shadow: 0 10px 24px rgba(214, 168, 79, 0.22);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact_btn:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 14px 30px rgba(214, 168, 79, 0.3);
}

/* Mapa */

.contact_map_block {
    margin-top: 46px;
}

.contact_map_heading {
    margin-bottom: 22px;
    text-align: center;
}

.contact_map_heading span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.contact_map_heading h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.15;
    color: var(--color-dark);
}

.contact_map {
    width: 100%;
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(214, 168, 79, 0.35);
    box-shadow: 0 24px 70px rgba(58, 36, 24, 0.14);
    background-color: rgba(255, 250, 240, 0.96);
}

.contact_map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact_map_actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

/* Prakticke informace */

.contact_info_section {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact_info_box {
    padding: 28px 24px;
    border-radius: 20px;
    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    box-shadow: 0 18px 48px rgba(58, 36, 24, 0.1);
}

.contact_info_icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact_info_box h3 {
    font-size: 21px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.contact_info_box p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(26, 18, 14, 0.7);
}

/* CTA */

.contact_cta {
    margin-top: 46px;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(26, 18, 14, 0.96), rgba(58, 36, 24, 0.96));
    color: var(--color-white);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    box-shadow: 0 24px 70px rgba(26, 18, 14, 0.18);
}

.contact_cta>div>span {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.contact_cta h2 {
    font-family: var(--font-main);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}

.contact_cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 220px;
    padding: 17px 28px;

    border-radius: 999px;
    text-decoration: none;

    color: var(--color-dark);
    background-color: var(--color-gold);

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact_cta a:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 14px 30px rgba(214, 168, 79, 0.28);
}

.contact_cta a {
    color: var(--color-dark);
}

.contact_cta a i,
.contact_cta a span {
    color: var(--color-dark);
}

.contact_cta a span {
    display: inline;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.contact_item {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: flex-start;
    column-gap: 20px;

    padding: 24px;
    border-radius: 18px;
    background-color: rgba(244, 230, 200, 0.42);
    border: 1px solid rgba(214, 168, 79, 0.22);
}

.contact_icon {
    width: 54px;
    height: 54px;
    margin-top: 0;

    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    flex-shrink: 0;
}

.contact_content {
    min-width: 0;
    padding-top: 1px;
}

/* DŮLEŽITÉ: jen přímý horní štítek, ne spany v tlačítkách */
.contact_content>span {
    display: block;
    margin-bottom: 7px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: rgba(26, 18, 14, 0.58);
}

.contact_content strong {
    display: block;
    font-size: 21px;
    line-height: 1.3;
    color: var(--color-dark);
}

.contact_content p {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(26, 18, 14, 0.68);
}

.contact_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 18px;
    padding: 13px 20px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    color: var(--color-dark);
    background-color: var(--color-gold);

    box-shadow: 0 10px 24px rgba(214, 168, 79, 0.22);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact_btn span {
    display: inline;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
}

.contact_btn i {
    color: inherit;
}

/* KONTAKT RESPONSIBILITA */

@media (max-width: 1000px) {
    .contact_grid {
        grid-template-columns: 1fr;
    }

    .contact_info_section {
        grid-template-columns: 1fr;
    }

    .contact_cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_cta a {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .contact_section {
        padding: 130px 18px 80px;
    }

    .contact_heading h1 {
        font-size: 58px;
    }

    .contact_card {
        padding: 28px;
        border-radius: 22px;
    }

    .contact_map {
        height: 380px;
        border-radius: 22px;
    }

    .contact_map_heading h2 {
        font-size: 36px;
    }

    .contact_cta h2 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .contact_section {
        padding: 120px 16px 70px;
    }

    .contact_heading {
        margin-bottom: 34px;
    }

    .contact_heading h1 {
        font-size: 46px;
    }

    .contact_heading p {
        font-size: 16px;
    }

    .contact_card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact_item {
        flex-direction: column;
        padding: 22px;
    }

    .contact_icon {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .contact_content strong {
        font-size: 19px;
    }

    .contact_btn {
        width: 100%;
    }

    .contact_map_block {
        margin-top: 40px;
    }

    .contact_map_heading h2 {
        font-size: 30px;
    }

    .contact_map {
        height: 320px;
        border-radius: 20px;
    }

    .contact_info_section {
        margin-top: 40px;
    }

    .contact_info_box {
        padding: 24px 22px;
        border-radius: 18px;
    }

    .contact_cta {
        margin-top: 40px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .contact_cta h2 {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .contact_section {
        padding: 110px 14px 64px;
    }

    .contact_heading h1 {
        font-size: 40px;
    }

    .contact_card {
        padding: 22px 18px;
    }

    .contact_item {
        padding: 20px;
    }

    .contact_content strong {
        font-size: 18px;
    }

    .contact_map {
        height: 290px;
    }

    .contact_cta h2 {
        font-size: 27px;
    }
}

/* ================= FOOTER ================= */

.site_footer {
    position: relative;
    padding: 42px 0 22px;
    background:
        linear-gradient(rgba(16, 10, 7, 0.95), rgba(16, 10, 7, 0.96)),
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(214, 168, 79, 0.05), transparent 35%),
        #120C09;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.site_footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 6px);
}

.footer_container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.footer_top {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.95fr 1.1fr;
    gap: 28px;
}

.footer_col {
    position: relative;
    padding: 0 8px;
}

.footer_col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: -14px;
    width: 1px;
    height: calc(100% - 12px);
    background: rgba(214, 168, 79, 0.28);
}

/* Brand část */

.footer_logo img {
    width: 170px;
    max-width: 100%;
    display: block;
}

.footer_divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: rgba(214, 168, 79, 0.75);
    margin: 18px 0 16px;
    position: relative;
}

.footer_divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    transform: translate(-50%, -50%) rotate(45deg);
}

.footer_brand_text {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.footer_socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer_facebook_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 46px;
    padding: 0 20px;

    border-radius: 999px;
    border: 1px solid rgba(214, 168, 79, 0.7);

    color: var(--color-gold);
    background-color: rgba(214, 168, 79, 0.06);

    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.footer_facebook_btn i {
    font-size: 18px;
}

.footer_facebook_btn:hover {
    transform: translateY(-2px);
    background-color: rgba(214, 168, 79, 0.14);
    border-color: var(--color-gold);
}

/* Nadpisy */

.footer_heading {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer_heading::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 150px;
    max-width: 100%;
    height: 1px;
    background: rgba(214, 168, 79, 0.7);
}

.footer_heading::after {
    content: "";
    position: absolute;
    left: 62px;
    bottom: 0;
    width: 7px;
    height: 7px;
    background: var(--color-gold);
    transform: rotate(45deg);
}

/* Rychlé odkazy */

.footer_links {
    list-style: none;
}

.footer_links li+li {
    margin-top: 13px;
}

.footer_links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: 0.2s ease;
}

.footer_links a i {
    color: var(--color-gold);
    font-size: 14px;
}

.footer_links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer_phone_link {
    display: inline-block;
    font-size: 17px;
    color: var(--color-gold);
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer_phone_link:hover {
    color: #e3b75d;
}

/* Kontakt */

.footer_contact_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_contact_item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer_contact_item i {
    color: var(--color-gold);
    font-size: 30px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.footer_contact_item span,
.footer_contact_item a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.45;
}

.footer_contact_item strong {
    display: block;
    margin-top: 3px;
    font-size: 16px;
    color: var(--color-white);
}

.footer_contact_link:hover {
    color: var(--color-gold);
}

/* Otevírací doba */

.footer_info_box {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer_info_item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer_info_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(214, 168, 79, 0.78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 24px;
    flex-shrink: 0;
}

.footer_info_icon_green {
    background: radial-gradient(circle at center, rgba(27, 70, 46, 0.95), rgba(18, 54, 35, 0.95));
    border-color: rgba(34, 112, 65, 0.6);
}

.footer_info_item span {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 4px;
}

.footer_info_item strong {
    display: block;
    font-size: 17px;
    color: var(--color-gold);
    font-weight: 800;
}

/* Tlačítko trasy */

.footer_route_btn {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-decoration: none;
    color: var(--color-gold);
    font-size: 17px;
    font-weight: 700;
    background:
        linear-gradient(135deg, rgba(18, 54, 35, 0.95), rgba(24, 71, 43, 0.85));
    border: 1px solid rgba(34, 112, 65, 0.55);
    box-shadow: inset 0 0 0 1px rgba(214, 168, 79, 0.08);
    transition: 0.25s ease;
}

.footer_route_btn i {
    font-size: 24px;
}

.footer_route_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

/* Spodní linka */

.footer_bottom_line {
    position: relative;
    margin: 36px 0 22px;
    height: 1px;
    background: rgba(214, 168, 79, 0.7);
}

.footer_line_dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Spodní část */

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer_bottom p,
.footer_bottom a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.footer_bottom_links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.footer_bottom_separator {
    width: 1px;
    height: 22px;
    background: rgba(214, 168, 79, 0.35);
}

.footer_bottom a:hover {
    color: var(--color-gold);
}

.footer_bottom a i {
    color: var(--color-gold);
    margin-left: 7px;
}

/* ================= FOOTER RESPONSIVITA ================= */

@media (max-width: 1400px) {
    .footer_top {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 34px;
    }

    .footer_col:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 1100px) {
    .site_footer {
        padding: 40px 0 22px;
    }

    .footer_logo img {
        width: 155px;
    }

    .footer_brand_text,
    .footer_links a,
    .footer_contact_item span,
    .footer_contact_item a,
    .footer_contact_item strong,
    .footer_info_item span {
        font-size: 15px;
    }

    .footer_info_item strong,
    .footer_route_btn {
        font-size: 16px;
    }

    .footer_heading {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .footer_top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer_col {
        padding: 0;
    }

    .footer_col::after {
        display: none !important;
    }

    .footer_brand {
        text-align: center;
    }

    .footer_logo {
        display: inline-block;
    }

    .footer_divider {
        margin: 18px auto 16px;
    }

    .footer_brand_text {
        margin: 0 auto 22px;
        font-size: 16px;
    }

    .footer_socials {
        justify-content: center;
    }

    .footer_facebook_btn {
        width: 100%;
        max-width: 280px;
    }

    .footer_heading {
        margin-bottom: 24px;
        text-align: center;
    }

    .footer_heading::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer_heading::after {
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    .footer_links li+li {
        margin-top: 14px;
    }

    .footer_links a {
        font-size: 16px;
    }

    .footer_contact_list,
    .footer_info_box {
        gap: 22px;
    }

    .footer_contact_item,
    .footer_info_item {
        align-items: flex-start;
    }

    .footer_route_btn {
        justify-content: center;
        min-height: 56px;
        font-size: 16px;
    }

    .footer_bottom_line {
        margin: 36px 0 22px;
    }

    .footer_bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer_bottom_links {
        justify-content: center;
        gap: 16px;
    }

    .footer_bottom_separator {
        display: none;
    }
}

@media (max-width: 560px) {
    .site_footer {
        padding: 44px 0 22px;
    }

    .footer_container {
        width: 88%;
    }

    .footer_logo img {
        width: 150px;
    }

    .footer_brand_text {
        font-size: 15px;
    }

    .footer_social {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .footer_heading {
        font-size: 20px;
    }

    .footer_heading::before {
        width: 135px;
    }

    .footer_links a,
    .footer_contact_item span,
    .footer_contact_item a,
    .footer_contact_item strong,
    .footer_info_item span,
    .footer_info_item strong,
    .footer_bottom p,
    .footer_bottom a {
        font-size: 15px;
    }

    .footer_contact_item i {
        font-size: 28px;
        width: 30px;
    }

    .footer_info_icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .footer_route_btn {
        min-height: 54px;
        padding: 0 20px;
        font-size: 16px;
        gap: 14px;
    }

    .footer_route_btn i {
        font-size: 24px;
    }
}

/* ================= MIMOŘÁDNÉ AKCE ================= */

.specials_section {
    padding: 170px 20px 100px;
    background:
        radial-gradient(circle at top left, rgba(214, 168, 79, 0.12), transparent 32%),
        linear-gradient(180deg, #f7efe2 0%, #f3e7d2 100%);
    color: var(--color-dark);
}

.specials_container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Nadpis */

.specials_heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.specials_label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.specials_heading h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.specials_heading p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.74);
}

/* Hlavní karta */

.specials_card {
    position: relative;
    overflow: hidden;

    max-width: 820px;
    margin: 0 auto;

    border-radius: 26px;
    background-color: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(214, 168, 79, 0.35);
    box-shadow: 0 24px 70px rgba(58, 36, 24, 0.14);
}

.specials_card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(circle at top right, rgba(214, 168, 79, 0.22), transparent 34%),
        radial-gradient(circle at bottom left, rgba(23, 68, 50, 0.12), transparent 34%);
}

.specials_card_top,
.specials_card_body,
.specials_card_bottom {
    position: relative;
    z-index: 1;
}

.specials_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 26px 34px;
    border-bottom: 1px solid rgba(26, 18, 14, 0.12);
}

.specials_status {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 14px;
    border-radius: 999px;

    background-color: rgba(214, 168, 79, 0.16);
    color: var(--color-green);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specials_status i {
    color: var(--color-gold);
}

.specials_validity {
    font-size: 14px;
    font-weight: 800;
    color: rgba(26, 18, 14, 0.58);
}

.specials_card_body {
    padding: 46px 38px 40px;
    text-align: center;
}

.specials_kicker {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--color-gold);
}

.specials_card_body h2 {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.specials_subtitle {
    max-width: 620px;
    margin: 0 auto 28px;

    font-size: 20px;
    line-height: 1.55;
    font-weight: 700;
    color: var(--color-dark);
}

.specials_price_box {
    width: 190px;
    height: 190px;
    margin: 0 auto 30px;

    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(214, 168, 79, 0.96), rgba(214, 168, 79, 0.84));

    color: var(--color-dark);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 18px 40px rgba(214, 168, 79, 0.26);
    border: 8px solid rgba(255, 250, 240, 0.9);
}

.specials_price_box span {
    display: block;
    margin-bottom: 4px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.specials_price_box strong {
    display: block;

    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 0.95;
    color: var(--color-dark);
}

.specials_price_box small {
    display: block;
    margin-top: 6px;

    font-size: 14px;
    font-weight: 800;
}

.specials_text {
    max-width: 620px;
    margin: 0 auto 28px;

    font-size: 16px;
    line-height: 1.75;
    color: rgba(26, 18, 14, 0.72);
}

.specials_drinks {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.specials_drink {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 18px;
    border-radius: 999px;

    background-color: rgba(244, 230, 200, 0.62);
    border: 1px solid rgba(214, 168, 79, 0.28);

    font-size: 14px;
    font-weight: 800;
    color: var(--color-dark);
}

.specials_drink i {
    color: var(--color-green);
}

.specials_card_bottom {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;

    padding: 28px 34px 34px;
    border-top: 1px solid rgba(26, 18, 14, 0.12);
}

/* Tlačítka */

.specials_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-width: 210px;
    padding: 15px 22px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.specials_btn_primary {
    color: var(--color-dark);
    background-color: var(--color-gold);
    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.22);
}

.specials_btn_primary:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 16px 34px rgba(214, 168, 79, 0.3);
}

.specials_btn_secondary {
    color: var(--color-green);
    background-color: transparent;
    border: 1px solid rgba(23, 68, 50, 0.35);
}

.specials_btn_secondary:hover {
    transform: translateY(-2px);
    border-color: var(--color-green);
    background-color: rgba(23, 68, 50, 0.06);
}

/* Informační poznámka */

.specials_note {
    max-width: 820px;
    margin: 34px auto 0;

    display: flex;
    gap: 20px;

    padding: 26px;
    border-radius: 20px;

    background-color: rgba(255, 250, 240, 0.78);
    border: 1px solid rgba(214, 168, 79, 0.28);
}

.specials_note_icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;

    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.specials_note h3 {
    font-size: 21px;
    margin-bottom: 9px;
    color: var(--color-dark);
}

.specials_note p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(26, 18, 14, 0.7);
}

/* Spodní CTA */

.specials_cta {
    max-width: 820px;
    margin: 46px auto 0;
    padding: 34px;
    border-radius: 24px;

    background:
        linear-gradient(135deg, rgba(26, 18, 14, 0.96), rgba(58, 36, 24, 0.96));

    color: var(--color-white);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    box-shadow: 0 24px 70px rgba(26, 18, 14, 0.18);
}

.specials_cta>div>span {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.specials_cta h2 {
    font-family: var(--font-main);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}

.specials_cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 220px;
    padding: 17px 28px;

    border-radius: 999px;
    text-decoration: none;

    color: var(--color-dark);
    background-color: var(--color-gold);

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.specials_cta a:hover {
    transform: translateY(-2px);
    background-color: #e3b75d;
    box-shadow: 0 14px 30px rgba(214, 168, 79, 0.28);
}

.specials_cta a {
    color: var(--color-dark);
}

.specials_cta a i,
.specials_cta a span {
    color: var(--color-dark);
}

.specials_cta a span {
    display: inline;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

/* ================= RESPONSIVITA ================= */

@media (max-width: 900px) {
    .specials_section {
        padding: 150px 18px 80px;
    }

    .specials_card_body {
        padding: 40px 30px 36px;
    }

    .specials_price_box {
        width: 170px;
        height: 170px;
    }

    .specials_price_box strong {
        font-size: 48px;
    }

    .specials_cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .specials_cta a {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .specials_section {
        padding: 150px 16px 70px;
    }

    .specials_heading {
        margin-bottom: 34px;
    }

    .specials_heading p {
        font-size: 16px;
    }

    .specials_card {
        border-radius: 22px;
    }

    .specials_card_top {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }

    .specials_card_body {
        padding: 34px 22px 32px;
    }

    .specials_subtitle {
        font-size: 18px;
    }

    .specials_text {
        font-size: 15px;
    }

    .specials_price_box {
        width: 155px;
        height: 155px;
        margin-bottom: 26px;
    }

    .specials_price_box strong {
        font-size: 44px;
    }

    .specials_card_bottom {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 22px 28px;
    }

    .specials_btn {
        width: 100%;
        min-width: 0;
    }

    .specials_note {
        flex-direction: column;
        padding: 24px 22px;
    }

    .specials_cta {
        margin-top: 40px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .specials_cta h2 {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .specials_section {
        padding: 160px 14px 64px;
    }

    .specials_card_body h2 {
        font-size: 38px;
    }

    .specials_price_box {
        width: 145px;
        height: 145px;
    }

    .specials_price_box strong {
        font-size: 40px;
    }

    .specials_drink {
        width: 100%;
        justify-content: center;
    }

    .specials_cta h2 {
        font-size: 27px;
    }
}

/* ================= SPOLEČNÝ STYL PODSTRÁNEK ================= */

/* Stejné odsazení celé horní části podstránek */
.daily-menu-section,
.food_menu_section,
.drink_menu_section,
.contact_section {
    padding: 170px 20px 100px;
}

/* Zruší extra odsazení, které rozhazovalo jídelní lístek */
.food_menu_container {
    padding-top: 0 !important;
}

/* Stejná šířka a odsazení nadpisového bloku */
.daily-menu-heading,
.food_menu_heading,
.drink_menu_heading,
.contact_heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

/* Malý horní nadpis */
.daily-menu-label,
.food_menu_label,
.drink_menu_label,
.contact_label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Hlavní nadpis */
.daily-menu-heading h1,
.food_menu_heading h1,
.drink_menu_heading h1,
.contact_heading h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

/* Text pod nadpisem */
.daily-menu-heading p,
.food_menu_heading p,
.drink_menu_heading p,
.contact_heading p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 18, 14, 0.74);
}

/* ================= ZMENŠENÝ NAVBAR PO SCROLLU ================= */

.site_header {
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        padding 0.25s ease;
}

.navbar {
    transition: padding 0.25s ease;
}

.navbar_logo img {
    transition: width 0.25s ease;
}

/* Desktop / obecně */
.site_header_scrolled.site_header_subpage {
    background-color: rgba(26, 18, 14, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.site_header_scrolled.site_header_subpage .navbar {
    padding: 10px 0;
}

.site_header_scrolled.site_header_subpage .navbar_logo img {
    width: 90px;
}

/* Mobil */
@media (max-width: 1100px) {
    .site_header_subpage .navbar {
        padding: 18px 0;
    }

    .site_header_subpage .navbar_logo img {
        width: 115px;
    }

    .site_header_scrolled.site_header_subpage .navbar {
        padding: 8px 0;
    }

    .site_header_scrolled.site_header_subpage .navbar_logo img {
        width: 82px;
    }

    .site_header_scrolled .navbar_toggle {
        font-size: 24px;
    }
}
