/*
 * Styly produktových sekcí (hero, benefits, ceník, ...).
 * Přeneseno z designových návrhů.
 */

/* =========================================================
   ZÁKLADNÍ PROMĚNNÉ A KONTEJNER (chybělo v projektu)
   ========================================================= */
:root {
    --text-h1: 4.5rem;
    --text-h2: 3rem;
    --container-width: 1280px;
    --container-padding: 1.5rem;
}

@media (max-width: 900px) {
    :root {
        --text-h1: 3rem;
        --text-h2: 2.25rem;
    }
}

/* Obsahový kontejner (stejná max šířka jako hlavička: max-w-7xl = 1280px) */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* =========================================================
   SYSTÉM BAREVNÝCH PALET PRO CESTY
   Každá cesta nastaví tělu třídu (palette-harmony, palette-power...),
   která naplní univerzální proměnné --c-primary, --c-bg, --c-badge.
   CSS sekcí pak pracuje jen s těmito univerzálními proměnnými.
   ========================================================= */

/* Výchozí paleta (kdyby nebyla zvolená žádná) = Harmony */
:root {
    --c-primary: #B87A8D;
    --c-bg: #F3E7EA;
    --c-badge: #8D6E63;
}

/* PALETA: Harmony (starorůžová) */
.palette-harmony {
    --c-primary: #B87A8D;
    --c-bg: #F3E7EA;
    --c-badge: #8D6E63;
}

/* PALETA: Power (zatím kopie Harmony - barvy doladíme u Power) */
.palette-power {
    --c-primary: #4A90E2;
    --c-bg: #E8F1FB;
    --c-badge: #2C5F8A;
}

/* PALETA: Senior (zatím orientační - doladíme u Senior) */
.palette-senior {
    --c-primary: #6BA368;
    --c-bg: #EAF3E9;
    --c-badge: #4A7048;
}

/* Pomocné třídy pro text a tlačítka */
.text-nase-cesty { color: var(--c-primary) !important; }

.btn-nase-cesty {
    background-color: var(--c-primary);
	font-family: var(--font-body);
    color: white;
    padding: 1rem 2.5rem !important;
    font-size: 1.125rem;
    border-radius: 99px;
    box-shadow: 0 10px 25px -5px rgba(184, 122, 141, 0.4);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
	transition: all 0.3s ease;
}

.btn-nase-cesty:hover {
    background-color: var(--color-sport);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-outline-nase-cesty {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5rem;
    border: 2px solid var(--c-primary);
    border-radius: 99px;
	font-family: var(--font-body);
    color: var(--c-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-nase-cesty:hover {
    background-color: var(--c-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(184, 122, 141, 0.2);
}

/* =========================================================
   SDÍLENÉ PRVKY (type-label, play, badge)
   ========================================================= */

/* Štítek typu (kapka + text) */
.mts-hero-type-label {
    display: inline-flex;
    align-items: center;
    background-color: rgba(30, 41, 59, 0.05);
    border: 1px solid rgba(30, 41, 59, 0.1);
    color: var(--color-body);
    padding: 0.5rem 1rem 0.5rem 0.8rem;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.mts-hero-type-label::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 14px;
    margin-right: 0.8rem;
    margin-bottom: 2px;
    background-color: var(--c-primary);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 189.5 299'%3E%3Cpath d='M93.5,299c111-71,144-232,0-299C-39.5,62-22.5,227,93.5,299z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 189.5 299'%3E%3Cpath d='M93.5,299c111-71,144-232,0-299C-39.5,62-22.5,227,93.5,299z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Velký play kruh */
.play-circle-large {
    width: 6rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s;
}

.play-icon {
    font-size: 2.25rem;
    margin-left: 0.25rem;
}

.play-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: white;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Video badge (vlevo nahoře) */
.video-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 5;                      		/* nad posterem i videem */
    background-color: var(--color-sport);       /* sport barva napevno */
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
	
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* =========================================================
   HERO SEKCE – MTS HARMONY
   ========================================================= */
.mts-nase-cesty-hero {
    position: relative;
    padding-top: 10rem;      /* 160px = výška hlavičky (80px) + vzdušnost (80px) */
    padding-bottom: 6rem;    /* 96px */
    background-color: var(--c-bg);
    overflow: visible !important;
}

/* Na mobilu menší padding (méně místa) */
@media (max-width: 900px) {
    .mts-nase-cesty-hero {
        padding-top: 7.5rem;   /* 120px */
        padding-bottom: 4rem;  /* 64px */
		background: linear-gradient(to bottom, var(--c-bg) 0%, white 100%);
    }
}

@media (max-width: 900px) {

    /* Oblouk pod hero nadpisem */
    .mts-nase-cesty-title {
        position: relative;
        padding-bottom: 1.5rem;
    }
    .mts-nase-cesty-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 24px;
        border-bottom: 3px solid var(--c-primary);
        border-radius: 50%;
        opacity: 0.5;
    } 

}

/* Dekorace: velká vlna vpravo */
.mts-nase-cesty-hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: white;
    z-index: 0;
    border-top-left-radius: 100% 100%;
}

/* Grid layout */
.mts-nase-cesty-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "spacer-top visual"
        "content    visual"
        "actions    visual"
        "spacer-bot visual";
    grid-template-rows: 1fr min-content min-content 1fr;
    column-gap: 4rem;
}

.mts-nase-cesty-hero-content { grid-area: content; }
.mts-nase-cesty-visual       { grid-area: visual; align-self: center; }
.mts-nase-cesty-actions      { grid-area: actions; margin-top: 2.5rem; }

/* Nadpis */
.mts-nase-cesty-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--text-h1);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-sport);
}

/* Perex */
.mts-nase-cesty-perex {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: #4A5568;
    margin-bottom: 2.5rem;
    max-width: 32rem;
    line-height: 1.6;
}

/* Tlačítka */
.mts-nase-cesty-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Pravá část (video) */
.mts-nase-cesty-visual {
    position: relative;
    cursor: pointer;
}

.mts-nase-cesty-video-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 3rem;
    overflow: hidden;
    background-color: #111827;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Poster i video vyplní kartu stejně */
.mts-nase-cesty-video-card .mts-hero-poster,
.mts-nase-cesty-video-card .mts-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mts-nase-cesty-video-card .mts-hero-poster {
    opacity: 0.6;
    transition: opacity 0.5s;
    z-index: 1;
}

/* Video leží nad posterem */
.mts-nase-cesty-video-card .mts-hero-video {
    z-index: 2;
}

.mts-nase-cesty-video-card:hover .mts-hero-poster { opacity: 0.4; }

.mts-nase-cesty-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 3; /* nad videem i posterem */
}

.mts-nase-cesty-video-card:hover .play-circle-large { transform: scale(1.1); }
.mts-nase-cesty-video-card:hover .play-text { opacity: 1; transform: translateY(0); }

/* Plovoucí badge (hnědá kapka) */
.mts-nase-cesty-floating-badge {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    width: 11rem;
    height: 14rem;
    color: var(--c-badge);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-15deg);
    z-index: 20;
    filter: drop-shadow(0 10px 20px rgba(141, 110, 99, 0.2));
}

/* SVG kapka na pozadí badge */
.mts-nase-cesty-floating-badge .badge-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mts-nase-cesty-floating-badge .badge-svg path {
    fill: var(--c-badge);
}

.mts-nase-cesty-floating-badge .badge-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    padding-bottom: 2rem;
    line-height: 1.4;
}

/* --- RESPONZIVITA HERO (do 900px) --- */
@media (max-width: 900px) {
    .mts-nase-cesty-title { font-size: var(--text-h1); }

 .mts-nase-cesty-hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;          /* vycentruje všechny prvky na střed */
        gap: 0;                        /* mezery řešíme cíleně níže */
    }
    .mts-nase-cesty-hero-content { order: 1; }
    .mts-nase-cesty-visual       { order: 2; margin-top: 2rem; }   /* video blíž k perexu */
    .mts-nase-cesty-actions      { order: 3; margin-top: 3rem; }      /* tlačítka níž od videa */

    .mts-nase-cesty-hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Perex vycentrovat (má omezenou šířku) */
    .mts-nase-cesty-perex {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;             /* mezeru pod perexem řeší margin videa */
    }
    .mts-nase-cesty-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    .mts-nase-cesty-visual {
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
 
    .mts-nase-cesty-video-card { max-width: 100%; }
    .mts-nase-cesty-hero-bg-shape { display: none; }
    .mts-nase-cesty-floating-badge {
        left: -1.5rem;
        bottom: -2rem;
        width: 8rem;
        height: 10rem;
        transform: rotate(-10deg);
    }
    .mts-nase-cesty-floating-badge .badge-text {
        font-size: 0.65rem;
        padding-bottom: 1.5rem;
    }
}

/* =========================================================
   VIDEO LIGHTBOX (společný pro celý web)
   ========================================================= */
.mts-video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;

    /* Výchozí stav: skryté */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Otevřený stav (třídu přidá JavaScript) */
.mts-video-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

/* Tmavé pozadí */
.mts-video-lightbox-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

/* Vnitřní rámeček s videem */
.mts-video-lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 1;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.mts-video-lightbox.is-open .mts-video-lightbox-inner {
    transform: scale(1);
}

/* Plocha pro přehrávač (poměr 4:5 na výšku) */
.mts-video-lightbox-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 85vh;       /* nikdy vyšší než 85 % výšky obrazovky */
    margin: 0 auto;
    background-color: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.mts-video-lightbox-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Zavírací křížek */
.mts-video-lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.mts-video-lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Když je lightbox otevřený, zamkneme scrollování stránky */
body.mts-lightbox-open {
    overflow: hidden;
}

/* =========================================================
   BENEFITS SEKCE (přínosy programu)
   Univerzální pro všechny cesty, barvy z palety.
   ========================================================= */
.mts-nase-cesty-benefits {
    padding: 6rem 0;
    background-color: white;
}

/* Hlavička sekce */
.mts-nase-cesty-benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.mts-nase-cesty-section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--text-h2);
    color: var(--color-sport);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.mts-nase-cesty-section-desc {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: #4A5568;
    line-height: 1.6;
}

/* Mřížka karet: 4 na řádek (desktop) */
.mts-nase-cesty-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Karta */
.mts-nase-cesty-benefits-grid .mts-nase-cesty-benefit-card {
    position: relative;
    height: 22rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mts-nase-cesty-benefits-grid .mts-nase-cesty-benefit-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

/* Pozadí (fotka) */
.mts-nase-cesty-benefits-grid .benefit-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mts-nase-cesty-benefits-grid .benefit-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
    opacity: 0.9;
    transition: transform 0.8s ease, opacity 0.5s ease;
    will-change: transform;
}

.mts-nase-cesty-benefits-grid .mts-nase-cesty-benefit-card:hover .benefit-bg img {
    transform: scale(1.1);
    opacity: 1;
}

/* Barevný překryv (gradient v barvě palety) */
.mts-nase-cesty-benefits-grid .benefit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        var(--color-sport) 40%,
        color-mix(in srgb, var(--color-sport) 80%, transparent) 60%,
        transparent 100%
    );
}

/* Obsah karty */
.mts-nase-cesty-benefits-grid .benefit-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

/* Ikona (rámeček + inline SVG obarvené bíle) */
.mts-nase-cesty-benefits-grid .benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--c-primary);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Inline SVG ikona - obarvení a velikost */
.mts-nase-cesty-benefits-grid .benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mts-nase-cesty-benefits-grid .benefit-icon svg path {
    fill: white;
}

/* Nadpis a text karty */
.mts-nase-cesty-benefits-grid .benefit-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.mts-nase-cesty-benefits-grid .benefit-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responzivita: 2 karty (tablet) */
@media (max-width: 1023px) {
    .mts-nase-cesty-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responzivita: 1 karta (mobil) */
@media (max-width: 767px) {
    .mts-nase-cesty-benefits-grid {
        grid-template-columns: 1fr;
    }
    .mts-nase-cesty-benefits { padding: 4rem 0; }
}

/* =========================================================
   BLOK: LOCATIONS (lokality s taby)
   Barvy řízené paletou: var(--c-primary), var(--c-bg)
   ========================================================= */
   
 /* Všechny prvky v locations sekci = body font (DM Sans) */
.mts-nase-cesty-locations,
.mts-nase-cesty-locations * {
    font-family: var(--font-body);
}
/* Výjimka: hlavní nadpis sekce zůstává Fraunces */
.mts-nase-cesty-locations .mts-nase-cesty-section-title {
    font-family: var(--font-heading);
}

.mts-nase-cesty-locations {
    padding: 6rem 0;
    background-color: white;
}

/* Vystředěná hlavička sekce */
.mts-nase-cesty-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}
.mts-nase-cesty-header-center .mts-nase-cesty-section-title {
    color: var(--color-sport);
}

/* Navigace tabů */
.mts-nase-cesty-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.mts-tab-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 99px;
    border: 2px solid #E2E8F0;
    background-color: white;
    color: var(--color-sport);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.mts-tab-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}
.mts-tab-btn.active {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
    color: white;
}

/* Obsah tabů (přepínání) */
.mts-tab-content {
    display: none;
}
.mts-tab-content.active {
    display: block;
}
/* Náběhová animace obsahu (řídí ji JavaScript) */
.mts-tab-content.is-animating {
    animation: mts-tab-fade 2.5s ease forwards;
}
@keyframes mts-tab-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Karta lokality */
.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: white;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid #F1F5F9;
    box-shadow: 0 20px 40px var(--c-bg);
    margin-top: 3rem;
}

/* Levá strana — fotka */
.location-visual {
    position: relative;
    min-height: 400px;
}
.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: var(--color-sport);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;    
}
/* Pravá strana — informace */
.location-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-name {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-sport);
	font-weight: 700;
}
.location-desc {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Místo srazu */
.location-details {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #F1F5F9;
}
.detail-row {
    display: flex;
    gap: 1rem;
}
.detail-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.detail-row strong {
    color: var(--color-sport);
}
.detail-row p {
    margin: 0.25rem 0 0 0;
    color: #64748B;
}

/* Rozvrh lekcí */
.schedule-box {
    background-color: var(--c-bg);
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
}
.schedule-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sport);
    margin-bottom: 1rem;
	font-weight: 700;
}
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.schedule-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
    border-bottom: 1px dashed rgba(71, 85, 104, 0.5);
    padding-bottom: 0.5rem;
}
.schedule-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.schedule-list .day {
    font-weight: 700;
}

/* Akce (tlačítka) */
.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* === Responzivita === */
@media (max-width: 989px) {
    .location-card {
        grid-template-columns: 1fr;
    }
    .location-visual {
        min-height: 250px;
    }
    .location-info {
        padding: 2rem;
    }
    .location-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .location-actions .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .mts-nase-cesty-locations {
        padding: 4rem 0;
    }
}