/* ===================================== FONTY ===================================== */
@font-face {
        font-family: "Chivo";
        src: url("../font/chivo-v20-latin_latin-ext-300.woff2") format("woff2");
        font-weight: 300;
}

@font-face {
        font-family: "Chivo";
        src: url("../font/chivo-v20-latin_latin-ext-700.woff2") format("woff2");
        font-weight: 700;
}

@font-face {
        font-family: "Chivo";
        src: url("../font/chivo-v20-latin_latin-ext-900.woff2") format("woff2");
        font-weight: 900;
}

/* ===================================== RESET ===================================== */
*,
*::before,
*::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
}

img {
        display: block;
        max-width: 100%;
}

ul {
        list-style: none;
}

a {
        text-decoration: none;
        color: inherit;
}

p {
        font-size: 20px;
}

/* ===================================== BODY ===================================== */
body {
        background: #444;
        color: #fff;
        font-family: "Chivo", sans-serif;
        font-weight: 300;
}




.main-header {
        background: rgba(0, 0, 0, .87);
        padding-top: 45px;
        width: 100%;
}

.header-container {
        max-width: 1500px;
        margin: auto;
        display: flex;
        flex-direction: column;
        /* ⭐ zarovnání pod sebe */
        align-items: center;
        /* ⭐ zarovnání na střed */
        justify-content: center;
        gap: 25px;
        position: relative;
        padding-bottom: 100px;
}

@keyframes float {
        0% {
                transform: translate(0, 0);
        }

        25% {
                transform: translate(20px, -220px);
        }

        50% {
                transform: translate(0, -40px);
        }

        75% {
                transform: translate(-20px, 120px);
        }

        100% {
                transform: translate(0, 0);
        }
}

/* ===================================== HEADER ===================================== */
/*aura kolem hlavy*/
.hlava img {
        filter: drop-shadow(0 0 25px rgba(209, 194, 138, 0.75));
}

/* LOGO */
.logo img {
        width: 380px;
        min-width: 150px;
        transition: transform 0.3s ease;
       
}

.logo img {
        filter:
           drop-shadow(0 0 22px rgba(225, 217, 17, 0.7))
            drop-shadow(0 0 45px rgba(209, 194, 138, 0.5));
            
    }

.logo:hover img {
        transform: scale(1.15);
}


.logo {
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    inset: -25px;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.05) 35%,
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}


/* ===================================== MENU ===================================== */
/*epilepsie menu*/
@keyframes shakeLuxury {
        0% {
                transform: translateX(0) rotate(0deg);
        }

        25% {
                transform: translateX(-2px) rotate(-0.5deg);
        }

        50% {
                transform: translateX(2px) rotate(0.5deg);
        }

        75% {
                transform: translateX(-1px) rotate(-0.3deg);
        }

        100% {
                transform: translateX(0) rotate(0deg);
        }
}

nav ul.menu li a:hover {
        animation: shakeLuxury 0.35s ease-in-out;
}

nav ul.menu {
        display: flex;
        gap: 25px;
        flex-wrap: nowrap;
        padding-top: 30px;
}

/* animovaný gradient bordera */
/* Jednodušší animovaný rámeček */
nav ul.menu li a {
        position: relative;
        display: block;
        padding: 12px 35px;
        color: #fff;
        text-transform: uppercase;
        background: #444;
        border-radius: 10px;
        z-index: 0;
        overflow: hidden;
        letter-spacing: 2px;
        /* ⬅️ roztažení písmen */
        font-weight: 600;
        /* místo 700 */
}

nav ul.menu li a::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        /* tloušťka rámečku */
        background: linear-gradient(120deg, #e1d911, #cbcbb8, #0a0f0c);
        background-size: 200% auto;
        animation: borderAnim 6s linear infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
}

@keyframes borderAnim {
        0% {
                background-position: 0% center;
        }

        100% {
                background-position: 200% center;
        }
}

nav ul.menu li a:hover {
        background: rgba(176, 204, 16, 0.4);
        color: #000;
        transform: translateY(-2px);
}

/* ===================================== HLAVA (1 DEFINICE) ===================================== */
.hlava img {
        width: 160px;
        max-width: 60vw;
        height: auto;
}

@media (max-width: 600px) {
        .hlava img {
                width: 120px;
        }
}

@keyframes pulseHead {
        0% {
                transform: scale(1);
        }

        50% {
                transform: scale(1.15);
        }

        100% {
                transform: scale(1);
        }
}

.hlava img {
        animation: pulseHead 4s ease-in-out infinite;
        transform-origin: center center;
}

@keyframes pulseHead {
        0% {
                transform: scale(1);
        }

        50% {
                transform: scale(1.2);
        }

        100% {
                transform: scale(1);
        }
}

/* ===================================== BREAKPOINT — MENU 2 ŘADY POD 1500px ===================================== */
@media (max-width: 1500px) {
        nav ul.menu {
                flex-wrap: wrap;
                justify-content: center;
                row-gap: 20px;
                column-gap: 25px;
                padding-top: 25px;
        }

        nav ul.menu li {
                flex: 1 1;
                display: flex;
                justify-content: center;
        }

        nav ul.menu li a {
                width: 100%;
                max-width: 220px;
                text-align: center;
        }
}

/*cikcak menu*/
@media (max-width: 600px) {
        nav ul.menu {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 18px;
        }

        /* cik-cak efekt */
        nav ul.menu li:nth-child(odd) a {
                transform: translateX(-14px) rotate(-2deg);
        }

        nav ul.menu li:nth-child(even) a {
                transform: translateX(14px) rotate(2deg);
        }

        nav ul.menu {
                gap: 26px;
                /* ⬅️ větší mezery mezi tlačítky */
        }
}

/* ===================================== BREAKPOINT — MOBIL 600PX ===================================== */
@media (max-width: 600px) {
        .header-container {
                flex-direction: column;
                align-items: center;
                gap: 35px;
                padding-bottom: 50px;
        }

        .logo {
                order: 2;
        }

        .logo img {
                width: 300px;
        }

        .hlava {
                order: 3;
        }

        .hlava img {
                width: 130px;
        }

        /* 🔥 KLÍČOVÁ OPRAVA */
        .menu-wrapper {
                order: 4;
                width: 100%;
                display: flex;
                justify-content: center;
        }

        nav ul.menu li {
                width: 100%;
                display: flex;
        }

        nav ul.menu li a {
                width: 190px;
                font-size: 15px;
        }
}

/* =============================== */
/* ÚVODNÍ KOSMETICKÁ SEKCE */
/* =============================== */
.uvodKosmetika {
        background: #444;
        color: #fff;
        padding: 60px 0 60px;
        text-align: center;
}

.uvodKosmetika .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
}

/* texty */
.uvodKosmetika p {
        font-size: 18px;
        line-height: 1.7;
        color: #e9e9e9;
        margin-bottom: 18px;
}

/* Ikona dolů – decentní kosmetický styl */
.uvodKosmetika .ikonkaDoluv {
        font-size: 34px;
        margin-top: 20px;
        color: #d1c28a;
        animation: pulzDoluv 2s ease-in-out infinite;
}

@keyframes pulzDoluv {
        0% {
                transform: translateY(0);
                opacity: 0.7;
        }

        50% {
                transform: translateY(7px);
                opacity: 1;
        }

        100% {
                transform: translateY(0);
                opacity: 0.7;
        }
}

/* Mobilní úpravy */
@media (max-width: 600px) {
        .uvodKosmetika p {
                font-size: 16px;
        }
}

/* ============================================ */
/* GLOBÁLNÍ ANIMOVANÝ GRADIENT PRO H1/H2/H3 */
/* ============================================ */
h2 {
        font-size: 32px;
}

h1,
h2,
h3 {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        letter-spacing: 1px;
        /*display: inline-block; nutné pro gradient uvnitř textu */
        background: linear-gradient(120deg, #e8d9a8, #f6edc9, #271e02);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: kosmetickyGradient 6s linear infinite;
        padding-bottom: 20px;
}

@keyframes kosmetickyGradient {
        0% {
                background-position: 0% center;
        }

        100% {
                background-position: 200% center;
        }
}






.uvodniAkce {
        background: #2e2e2e;
        /* tmavé pozadí sladěné se stránkou */
        padding: 60px 0;
        color: #fff;
}

.uvodniAkce .container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        /* ⭐ zarovná akceBox doprostřed */
}

.akceBox {
        display: flex;
        align-items: center;
        gap: 40px;
        background: rgba(0, 0, 0, 0.4);
        padding: 40px;
        border-radius: 10px;
        text-decoration: none;
        color: inherit;
        transition: transform .3s ease;
        flex-wrap: nowrap;
        /* ⭐ DŮLEŽITÉ – dovolí zalomení místo tlačení doprava */
        max-width: 80%;
        /* ⭐ Nesmí přesáhnout šířku stránky */
        box-sizing: border-box;
}

.akceText {
    flex: 1;
    min-width: 0; /* 🔥 aby se text správně zalamoval */
}



.akceBox img {
        width: 100%;
        max-width: 350px;
        /* ⭐ Obrázek nikdy nepřesáhne 350px, ale smršťuje se */
        height: auto;
        border-radius: 10px;
        flex-shrink: 0; /* 🔥 obrázek se nezmenší kvůli textu */
}

.akceText span {
        display: inline-block;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
        color: #d4af37;
        font-weight: 700;
}

.akceText h2 {
        font-size: 48px;
        line-height: 1.15;
        margin-bottom: 15px;
}

.akceText p {
        font-size: 18px;
        opacity: 0.9;
}

.akceText .novinka {
        display: block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 3px;
        color: #d8c78f;
        margin-bottom: 18px;
        text-transform: uppercase;
}

.kosmetickeSluzby .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        /* odsazení od levého/pravého kraje */
}

.kosmetickeSluzby {
        background: #2e2e2e;
        padding: 40px 0;
        color: #fff;
}

.sluzbyGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        padding-bottom: 50px;
}

.sluzbaBox {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        transition: transform .3s ease, box-shadow .3s ease;
}

.sluzbaBox:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.sluzbaBox img {
        width: 80%;
        height: auto;
        object-fit: cover;
        display: block;
        margin: auto;
        align-items: center;
        margin-top: 30px;
}

.sluzbaBox h3 {
        font-size: 28px;
        margin: 18px 22px 5px;
        font-family: "Playfair Display", serif;
}

.sluzbaBox p {
        opacity: 0.8;
        margin: 0 22px 20px;
}

.cenikBtn {
        display: inline-block;
        align-self: flex-start;
        margin: 0 22px 25px;
        padding: 6px 14px;
        border: 1px solid #d1c28a;
        border-radius: 6px;
        font-size: 14px;
        letter-spacing: 1px;
        color: #d1c28a;
        transition: .3s;
}

.sluzbaBox:hover .cenikBtn {
        background: #d1c28a;
        color: #000;
}

/* Responsivita */
@media (max-width: 1000px) {
        .sluzbyGrid {
                grid-template-columns: repeat(2, 1fr);
        }
}

@media (max-width: 600px) {
        .sluzbyGrid {
                grid-template-columns: 1fr;
        }
}

/* === Úvodní akční box (nový design) === */
.akceBox:hover {
        transform: scale(1.02);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
        .akceBox {
                flex-direction: column;
                text-align: center;
                padding: 30px;
        }

        .akceBox img {
                width: 90%;
                max-width: 350px;
        }

        .akceText h2 {
                font-size: 8vw;
        }
}

@media (max-width: 500px) {
        .akceBox img {
                width: 100%;
        }
}

/*spodni box fitness*/
.akceBoxspodni {
        display: flex;
        align-items: center;
        gap: 40px;
        background: rgba(0, 0, 0, 0.4);
        padding: 40px;
        border-radius: 12px;
        text-decoration: none;
        color: inherit;
        transition: transform .3s ease;
        flex-wrap: nowrap;
        max-width: 70%;
        margin: auto;
        box-sizing: border-box;
}

.akceBoxspodni:hover {
        transform: scale(1.02);
}

.akceBoxspodni img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 10px;
}

.akceBoxspodni .akceText span {
        display: inline-block;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
        color: #d4af37;
        font-weight: 700;
}

.akceBoxspodni .akceText h2 {
        font-size: 48px;
        line-height: 1.15;
        margin-bottom: 15px;
}

.akceBoxspodni .akceText p {
        font-size: 18px;
        opacity: 0.9;
}

@media (max-width: 1100px) {
        .akceBoxspodni {
                flex-direction: column;
                text-align: center;
                max-width: 75%;
                margin: auto;
        }

        /* přehodíme pořadí prvků uvnitř */
        .akceBoxspodni img {
                order: 2;
                /* obrázek bude druhý */
                width: 90%;
                max-width: 450px;
        }

        .akceBoxspodni .akceText {
                display: flex;
                flex-direction: column;
                align-items: center;
        }

        /* 1) Dále u nás najdete → úplně nahoru nad obrázek */
        .akceBoxspodni .akceText .novinka {
                order: 1;
                margin-bottom: 20px;
        }

        /* 3) Nadpis pod obrázek */
        .akceBoxspodni .akceText h2 {
                order: 3;
                font-size: 7vw;
                line-height: 1.1;
                margin-top: 5px;
        }

        /* 4) Odstavec nakonec */
        .akceBoxspodni .akceText p {
                order: 4;
                max-width: 650px;
                margin: 5px auto 0 auto;
        }
}

@media (max-width: 900px) {
        .akceBoxspodni {
        max-width: 70%;
               
        }}

.akceVideo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
}

/* ================================ FOOTER – kosmetický design ================================ */
.footerKosmetika {
        background: #222;
        color: #fff;
        padding-top: 50px;
        margin-top: 60px;
}

/* IG sekce */
.footerInfoBox {
        text-align: center;
}

footer .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
}

/* IG obrázky */
.ig {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
}

.ig img {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform .3s ease, opacity .3s ease;
}

.ig img:hover {
        transform: scale(1.07);
        opacity: .9;
}

/* ================================ FOOTER – čistá verze ================================ */
/* IG sekce */
.footerInfo {
        background: #2e2e2e;
        padding: 40px 0;
}

.footerInfoBox {
        text-align: center;
}

.footerInfoBox h3 {
        font-family: "Playfair Display", serif;
        font-size: 26px;
        margin-bottom: 30px;
        background: linear-gradient(120deg, #e8d9a8, #f6edc9, #ccb77a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.footerInfo .ig {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
}

.footerInfo .ig img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
}

/* ================================ COPY SEKCIA ================================ */
.copy {
        background: #2e2e2e;
        padding: 40px 0 30px;
        color: #fff;
        font-size: 15px;
}

.copyGrid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
}

.copyL p {
        text-align: center;
        margin: 0;
}

/* 🔥 TADY JSOU ODSTUPY MEZI ŘÁDKY — FUNKČNÍ */
.copyYear {
        margin-bottom: 12px;
}

.copyAuthors {
        margin: 14px 0;
        padding: 20px 0 20px;
        /* ⭐ TADY JE ODSAZENÍ NAHORU I DOLŮ */
}

.copyAuthors a {
        color: #d7c59a;
}

.copyLinks {
        margin-top: 14px;
}

.copyLinks a {
        color: #d7c59a;
}

.copyR {
        text-align: center;
}

.copyR p {
        margin-bottom: 12px;
}

.socialIkon {
        display: flex;
        gap: 30px;
        margin-top: 20px;
}

.socialIkon a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
}

.socialIkon a i {
        font-size: 35px;
        line-height: 1;
        transition: color 0.3s ease;
}

/* Instagram */
.socialIkon .fa-instagram {
        color: #E4405F;
}

.socialIkon a:hover .fa-instagram {
        color: #ff6f8f;
}

/* Facebook */
.socialIkon .fa-facebook {
        color: #1877F2;
}

.socialIkon a:hover .fa-facebook {
        color: #3b8bff;
}

/* ================================ DESKTOP ================================ */
@media (min-width: 900px) {
        .copyGrid {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
        }

        .copyL p {
                text-align: left;
        }

        .copyR {
                text-align: right;
        }
}

/* ================================ MOBIL ================================ */
@media (max-width: 600px) {
        .copyGrid {
                flex-direction: column;
                text-align: center;
                gap: 22px;
        }

        .copyL {
                padding: 15px 0;
                /* ✔️ TADY UŽ BUDE ODSAZENÍ FUNKČNÍ */
        }
}









/* ================= FOOTER hlavy ================= */

.footer-decor {
    position: relative;
    height: 160px;
    overflow: hidden;
    pointer-events: none;
    background: #2e2e2e;
}
.footer-head {
    position: absolute;
    bottom: 0;
    opacity: 0.25;
    width: 180px;
    transform-origin: center center;
    animation: footerSwing 5s ease-in-out infinite;
}
@keyframes footerSwing {
    0%   { transform: rotate(-25deg); }
    50%  { transform: rotate(5deg); }
    100% { transform: rotate(-25deg); }
}

.footer-head-1 {
    left: 10%;
    width: 149px;
     animation-delay: -6s;
}

.footer-head-2 {
    right: 10%;
    width: 150px;
    animation-delay: -5s;
}













/*kontakt stranka */
.kontaktSekce {
        background: #444;
        color: #fff;
        padding: 80px 0;
        text-align: center;
}

.kontaktSekce .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
}

.kontaktSekce h2 {
        font-size: 52px;
        margin-bottom: 40px;
}

.kontaktInfo {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
}

.kontaktItem {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-size: 20px;
}

.kontaktItem i {
        font-size: 28px;
        background: linear-gradient(120deg, #e8d9a8, #f6edc9, #271e02);
        background-size: 200% auto;
        animation: kosmetickyGradient 6s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.kontaktItem a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
}

.kontaktItem i:hover {
        filter: brightness(1.25);
        transform: scale(1.1);
        transition: .3s ease;
}

/* MAPA */
.mapaWrap {
        width: 100%;
        max-width: 1100px;
        margin: 20px auto 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.mapaWrap iframe {
        width: 100%;
        height: 450px;
        border: none;
}

/* RESPONSIVNÍ ÚPRAVY */
@media (max-width: 600px) {
        .kontaktSekce h2 {
                font-size: 36px;
        }

        .kontaktItem {
                flex-direction: column;
                text-align: center;
        }

        .mapaWrap iframe {
                height: 330px;
        }
}

/* ========================================================= CENÍK – SEKCE ========================================================= */
.cenikSection {
        padding: 10px 0 100px;
}

.cenikSection .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
}

/* ============================= */
/* NADPIS */
/* ============================= */
.cenikSection .whiteNadpis {
        text-align: center;
        margin-bottom: 60px;
}

.cenikSection h1 {
        font-size: 48px;
        margin-bottom: 15px;
}

.cenikSection .nadpisLine p {
        opacity: 0.8;
        font-size: 16px;
}

/* ============================= */
/* GRID */
/* ============================= */
.cenikGrid {
        display: flex;
        flex-direction: column;
        gap: 20px;
}

/* ============================= */
/* JEDNA POLOŽKA (BOX) */
/* ============================= */
.cenikItem {
        background: #2c2c2c;
        border-radius: 16px;
        overflow: hidden;
}

/* ============================= */
/* TLAČÍTKO (HLAVIČKA) */
/* ============================= */
.cenikToggle {
        width: 100%;
        background: none;
        border: none;
        color: #d6c27a;
        padding: 22px 26px;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
}

.cenikToggle span {
        font-weight: 500;
}

.cenikToggle i {
        transition: transform 0.3s ease;
}

/* otočení šipky */
.cenikItem.active .cenikToggle i {
        transform: rotate(180deg);
}

/* ============================= */
/* OBSAH (ROZKLIKNUTÍ) */
/* ============================= */
.cenikContent {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        padding: 0 26px;
}

.cenikItem.active .cenikContent {
        max-height: 3000px;
        padding-bottom: 25px;
}

/* text */
.cenikContent p {
        margin: 15px 0 20px;
        font-size: 15px;
        opacity: 0.9;
}

/* ============================= */
/* TABULKA */
/* ============================= */
.cenikTable {
        width: 100%;
        border-collapse: collapse;
}

.cenikTable th,
.cenikTable td {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
}

.cenikTable th {
        color: #d6c27a;
        font-weight: 500;
        text-align: left;
}

/* ============================= */
/* REZERVACE */
/* ============================= */
.rezervace {
        text-align: center;
        margin-top: 60px;
        font-size: 16px;
}

.rezervace a {
        color: #d6c27a;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        display: inline-block;
        margin-top: 15px;
}

/* ============================= */
/* O NÁS – TÝM */
/* ============================= */
/* === OBAL FOTKY === */
.onasFoto {
        width: 50%;
        max-width: 280px;
        aspect-ratio: 3 / 5;
        margin: 0 auto 10px;
        overflow: hidden;
}

/* === SAMOTNÝ OBRÁZEK === */
.onasFoto img {
        width: 90%;
        height: 90%;
        object-fit: cover;
        object-position: top center;
        display: block;
}

.onasTeam {
        background: #444;
        padding: 100px 0 120px;
}

.onasLektoriContainer {
        max-width: 1400px;
        margin: 0 auto;
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        padding: 0 15px;
}

/* === JEDEN SLOUPEC === */
.onasSloupec {
        text-align: center;
        color: #fff;
        width: 260px;
}

/* === JMÉNA === */
.onasSloupec h3 {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        margin-bottom: 6px;
}

/* === POZICE === */
.onasSloupec h4 {
        font-size: 20px;
        font-weight: 300;
        opacity: 0.8;
}

/* === LINKA === */
.onasSloupec .redline {
        width: 40px;
        height: 2px;
        background: #d6c27a;
        margin: 12px auto;
}

/* === POPIS === */
.onasSloupec p {
        opacity: 0.75;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
/* 2 + 2 */
@media (max-width: 1250px) {
        .onasLektoriContainer {
                flex-wrap: wrap;
                gap: 40px 0;
        }

        .onasSloupec {
                width: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;
        }
}

/* 1 pod sebe */
@media (max-width: 600px) {
        .onasSloupec {
                width: 100%;
        }
}
@media (max-width: 600px){
    .onasLektoriContainer{
        gap: 80px 0;
    }
}
/* ============================= */
/* O NÁS – HERO */
/* ============================= */
.onasHero {
        padding: 5px 0 30px;
}

.onasHero .onasContainer {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
}

.onasHero h1 {
        font-size: 38px;
        margin-bottom: 30px;
}

/* RÁMEČEK S TEXTEM */
.onasHeroBox {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px 40px;
        border: 1px solid #d7c59a;
        background: #2e2e2e;
}

.onasHeroText {
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
}

.onasHeroBox {
        backdrop-filter: blur(2px);
}

/* ============================= */
/* O NÁS – NAŠE FILOZOFIE */
/* ============================= */
.onasAbout {
        padding: 40px 0;
        display: flex;
        justify-content: center;
}

.onasContainer {
        max-width: 1200px;
        width: 100%;
        padding: 0 20px;
}

.onasAboutTitle {
        text-align: center;
        margin-bottom: 30px;
}

.onasAboutGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
}

.onasAboutText,
.onasAboutBox {
        padding: 40px;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
}

.onasAboutText p {
        margin-bottom: 14px;
        line-height: 1.7;
}

/* ============================= */
/* MOBIL */
/* ============================= */
@media (max-width: 900px) {
        .onasAboutGrid {
                grid-template-columns: 1fr;
                gap: 40px;
        }
}

/* ============================= */
/* O NÁS – SLUŽBY */
/* ============================= */
.onasServices .onasContainer {
        max-width: 800px;
        margin: 0 auto;
}

.onasServices {
        padding: 0 0 50px 0;
}

.onasServicesTitle {
        text-align: center;
        margin-bottom: 20px;
}

.onasServicesBox {
        max-width: 800px;
        padding: 40px;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
}

/* seznam */
.onasServicesList {
        list-style: none;
        padding: 0;
        margin: 0 0 25px;
}

.onasServicesList li {
        margin-bottom: 10px;
        padding-left: 18px;
        position: relative;
}

/* malá elegantní odrážka */
.onasServicesList li::before {
        content: "✦";
        position: absolute;
        left: 0;
        color: #e8d9a8;
}

/* poznámka dole */
.onasServicesNote {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
}

/*solarium zacatek stranky*/
.collarium-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
}

/*odsazeni sekci*/
.collarium-hero {
        padding: 60px 0 40px;
        text-align: center;
}

.collarium-image {
        padding: 40px 0;
}

.collarium-info-heading {
        padding: 40px 0 20px;
        text-align: center;
}

.collarium-info {
        padding: 0 0 60px;
}

.collarium-info p {
        margin-bottom: 18px;
        line-height: 1.6;
}

/*cenik solaria*/
.collarium-price {
        padding: 30px 0;
        text-align: center;
}

.collarium-price-title {
        margin-bottom: 30px;
}

.collarium-pricebox {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px 50px 20px;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
        border-radius: 4px;
}

.collarium-pricerow {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.collarium-pricerow-head {
        font-weight: 600;
}

.collarium-pricerow:last-child {
        border-bottom: none;
}

@media (max-width: 600px) {

        .collarium-hero-box,
        .collarium-info-box {
                padding: 24px 20px;
        }

        .collarium-video {
                border-radius: 10px;
        }
}

/*ramecky textu solaria*/
.collarium-info-box {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px 30px 20px;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
        border-radius: 4px;
}

.collarium-info-box p {
        margin-bottom: 16px;
        line-height: 1.6;
}

.collarium-info-box p:last-child {
        margin-bottom: 0;
}

/*vrchni sekce ramecku -textu*/
.collarium-hero-box {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px 40px;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
        border-radius: 4px;
}

.collarium-title {
        margin-bottom: 16px;
}

.collarium-intro {
        line-height: 1.6;
        opacity: 0.9;
}

/* ============================= */
/* GALERIE */
/* ============================= */
.gallery-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
}

/* === HERO === */
.gallery-hero {
        padding: 60px 0 50px;
        text-align: center;
}

.gallery-hero-box {
        max-width: 720px;
        margin: 0 auto;
        padding: 30px 40px;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
        border-radius: 4px;
}

.gallery-title {
        margin-bottom: 12px;
}

.gallery-intro {
        line-height: 1.6;
        opacity: 0.85;
}

/* === GRID === */
.gallery-content {
        padding: 60px 0 80px;
}

.gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
}

/* === TEXTOVÝ BOX POD OBRÁZKEM === */
.gallery-item-title {
        text-align: center;
}

.gallery-item-text {
        line-height: 1.4;
        opacity: 0.8;
        text-align: center;
        padding: 20px 10px 25px 20px;
}

/* ============================= */
/* MOBIL */
/* ============================= */
/* tablet */
@media (max-width: 1000px) {
        .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
        }
}

@media (max-width: 600px) {
        .gallery-hero {
                padding: 10px 0 30px;
        }

        .gallery-hero-box {
                padding: 24px 20px;
        }

        .gallery-grid {
                gap: 20px;
                grid-template-columns: 1fr;
        }
}

.gallery-item {
        display: flex;
        flex-direction: column;
        border: 1px solid #ccb77a;
        background: #2e2e2e;
        border-radius: 6px;
        overflow: hidden;
        /* nutné pro radius */
}

.gallery-item-image {
        padding-top: 20px;
        display: flex;
        justify-content: center;
}

.gallery-item img {
        width: 88%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        border-radius: 8px;
        display: block;
}

.gallery-item-box {
        padding: 10px 10px 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* ⭐ TADY JE CELÝ KOUZLO */
}

.gallery-item-title {
        text-align: center;
}

.gallery-item-image {
        padding: 20px 0;
        background: rgba(255, 255, 255, 0.03);
}

.gallery-item-text {
        text-align: center;
        opacity: 0.8;
        line-height: 1.4;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
        margin: 0;
}

/*galerie uprava*/
.gallery-item-text-wrapper {
        position: relative;
}

.gallery-more-btn:hover {
        text-decoration: underline;
}

/*pri otevreni -text*/
.gallery-item.active .gallery-item-text {
        max-height: 1000px;
        /* dost velké */
        padding: 10px 0 0;
        /* padding až po otevření */
}

.gallery-item-title {
        padding-bottom: 6px;
        /* místo 20px */
}

/*tlacitko-design*/
/* === Galerie – tlačítko Více / Méně === */
.gallery-more-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 8px auto 15px;
        /* ⭐ centrování */
        padding: 6px 16px;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ccb77a;
        background: transparent;
        border: 1px solid rgba(204, 183, 122, 0.6);
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
}

/* hover efekt */
.gallery-more-btn:hover {
        background: rgba(204, 183, 122, 0.15);
        border-color: #ccb77a;
        transform: translateY(-1px);
}

/* aktivní (klik) */
.gallery-more-btn:active {
        transform: translateY(0);
}

.gallery-item-text-wrapper {
        text-align: center;
}

/* ================================ Instagram – jednotné náhledy ================================ */
/* omezíme šířku IG bloku všude */
.footerInfo .ig {
        max-width: 320px;
        margin: 0 auto;
}

/* grid 2x2 */
.footerInfo #sb_instagram #sbi_images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
}

/* reset pluginu */
.footerInfo #sb_instagram .sbi_item {
        float: none;
        width: auto;
}

/* obrázky */
.footerInfo #sb_instagram .sbi_item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 8px;
        display: block;
}

/* follow tlačítko */
.footerInfo #sb_instagram #sbi_load {
        margin-top: 12px;
        text-align: center;
}

/* ================================ PRÁVNÍ STRÁNKY – GDPR / COOKIES ================================ */
/* hlavní sekce */
.privacy-policy {
        padding: 80px 20px;
}

/* vnější container */
.privacy-policy .container {
        max-width: 1100px;
        margin: 0 auto;
}

/* vnitřní obsah */
.privacy-container {
        max-width: 820px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.75;
        color: #eaeaea;
}

/* nadpisy */
.privacy-container h1 {
        font-size: 28px;
        margin-bottom: 24px;
}

.privacy-container h2 {
        font-size: 20px;
        margin-top: 36px;
        margin-bottom: 12px;
}

/* text */
.privacy-container p {
        margin-bottom: 14px;
}

/* seznamy */
.privacy-container ul {
        padding-left: 22px;
        margin-bottom: 18px;
}

.privacy-container li {
        margin-bottom: 8px;
}

/* odkazy */
.privacy-container a {
        color: #d8b85a;
        text-decoration: underline;
}

.privacy-container a:hover {
        opacity: 0.85;
}

.white.whiteNadpis {
        text-align: center;
}

.white.whiteNadpis h1 {
        margin: 0 auto;
}

/* responzivita */
@media (max-width: 768px) {
        .privacy-policy {
                padding: 60px 15px;
        }

        .privacy-container {
                font-size: 15px;
                width: 80%;
        }

        .privacy-container h1 {
                font-size: 24px;
        }

        .privacy-container h2 {
                font-size: 18px;
        }
}

/*kukiiiis centr*/
.cmplz-document {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        line-height: 1.7;
}

/* ===== 404 PAGE ===== */
.error {
        min-height: calc(100vh - 200px);
        /* počítá s headerem/footerem */
        display: flex;
        justify-content: center;
        align-items: center;
}

.errorPage {
        text-align: center;
        max-width: 700px;
        width: 100%;
}

/* Nadpis */
.errorPage h1 {
        margin-bottom: 30px;
        font-size: 32px;
        color: #d4c18a;
        /* tvá zlatá */
}

/* Video */
.video-container {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
}

.video-container video {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
}

/* Tlačítko – ve stylu webu */
.btn-404 {
        display: inline-block;
        padding: 12px 28px;
        border: 1px solid #d4c18a;
        color: #d4c18a;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
}

.btn-404:hover {
        background: #d4c18a;
        color: #000;
}

/* === SOLARIUM VIDEO – STEJNÝ PATTERN JAKO FITNESS === */
.collariumBox {
        background: #1a1a1a;
        padding: 0;
        border-radius: 10px;
        overflow: hidden;
        /* 🔥 KRITICKÉ */
        max-width: 800px;
        margin: 0 auto;
}

.collariumBox video {
        width: 100%;
        aspect-ratio: 16 / 9;
        /* 🔥 KRITICKÉ */
        object-fit: cover;
        display: block;
}

/*tapnuti mobil menu*/
@media (hover: none) and (pointer: coarse) {
        nav ul.menu li a:active {
                background: rgba(209, 194, 138, 0.35);
                color: #000;
                transform: scale(0.96);
        }
}













/* === SLIDER MÍSTO OBRÁZKU – STEJNÉ CHOVÁNÍ JAKO IMG === */
.akceSlider {
    width: 100%;
    max-width: 350px;      /* 🔥 STEJNÉ JAKO IMG */
    height: auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;        /* 🔥 STEJNÉ JAKO IMG */
}

/* obrázky uvnitř slideru */
.akceSlider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

/* aktivní fotka */
.akceSlider img.active {
    opacity: 1;
}

.akceSlider {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* aby slider měl výšku */
.akceSlider::before {
    content: "";
    display: block;
    padding-top: 115%; /* ⬅️ poměr fotek (doladíme) */
}


