
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    background: rgba(226, 216, 200, 0.9);
    
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* 🔥 místo paddingu */

}
section {
    padding: 25px 0px;
    
}
section + section {
    margin-top: 60px;
}
/*ZAČÁTEK MENU*/
/* wrapper */
.dropdown {
    position: relative;
    display: inline-block; /* 🔥 DŮLEŽITÉ */
}

/* menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    background: rgba(228, 210, 184, 0.9);
    backdrop-filter: blur(10px);

    border-radius: 15px;
    padding: 10px 0;

    min-width: 220px;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s ease;

    z-index: 10000;
}

/* 🔥 aktivní stav */
.dropdown-menu.active {
    opacity: 1;
    pointer-events: auto;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(235, 213, 180, 0.9);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid #8f6838;

    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    display: inline-block; /* 🔥 DŮLEŽITÉ */
    position: relative;
}

nav a:hover {
    color: #181614;
}
nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #181614;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
    left: 50%;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}
/*KONEC MENU*/

/*ZAČÁTEK HLAVNÍ STRÁNKY*/
/* ===== HERO (STEJNÉ JAKO O MNĚ) ===== */

.HLAVNÍ_STRÁNKA {
    width: 100%;
    padding: 120px 0;
background: url("fotky/IMG_7427 (1).jpg") center/cover no-repeat;
    
}
.OTEVIRACI_DOBA {
    color: #333;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 58px;
    
}

/* mlha za textem */
.OTEVIRACI_DOBA::before {
    content: "";
    position: absolute;

    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 450px;
    height: 100px;

  background: linear-gradient(
    90deg,
    rgba(235, 213, 180, 0) 0%,
    rgba(235, 213, 180, 0.89) 15%,
    rgba(235, 213, 180, 0.877) 85%,
    rgba(235, 213, 180, 0) 100%
);

    backdrop-filter: blur(opx);

    z-index: -1;
}
.VNITŘEK_HLAVNÍ_STRÁNKY {
    width: 80%;
    margin: 0 auto;
    height: 625px; /* 🔥 pevná výška */

    position: relative;

    
}
/* bílá mlha v rohu */
.LOGO_WRAP {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.LOGO_WRAP::after {
    content: "";
    position: absolute;

    top:80%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 450px;
    height:500px;
opacity: 0.9;
    background: radial-gradient(
        circle,
        rgb(230, 205, 174),     /* 🔥 silnější střed */
       rgb(196, 184, 169),   /* 🔥 přechod */
        rgb(235, 212, 183)
    );

    filter: blur(70px);

    z-index: 1; /* 🔥 OPRAVA */
}


/* logo */
.LOGO_FIRMY {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%); /* 🔥 přesné vycentrování */
     transition: transform 0.6s ease; /* 🔥 pomalejší */
    width: 175px; /* můžeš doladit */
    z-index: 5;
}
.LOGO_FIRMY:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* text + tlačítko */
/* kontejner pro tlačítko */
.KONTENT_HLAVNÍ_STRÁNKY {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* tlačítko */
.btn {
    padding: 12px 24px;
    border-radius: 25px;

    background: rgba(248, 228, 198, 0.9);
    color: rgb(3, 3, 3);

    border: 1.2px solid #000000;

    text-decoration: none;

    transition: 0.3s ease;
    cursor: pointer;
}
.btn:hover {
    transform: scale(1.05);
    background: rgba(196, 170, 128, 0.9);
}
/*KONEC HLAVNÍ STRÁNKY*/
/* =========================
   DÁRKOVÝ POUKAZ
========================= */

.POUKAZ {
    padding: 60px 20px;

    position: relative;

    background: url("fotky/IMG_7431.jpg") center/cover no-repeat;
}

.POUKAZ_BOX {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: auto;

    display: flex;
    align-items: center;
    gap: 40px;

    padding: 30px;

    border-radius: 30px;

    background: rgba(235, 213, 180, 0.897);

    

    border: 1px solid #8f6838;

    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.POUKAZ_TEXT h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.POUKAZ_TEXT p {
    font-size: 18px;
    line-height: 1.6;
}

.POUKAZ_IMAGE img {
    width: 100%;
    max-width: 420px;

    border-radius: 20px;

    object-fit: cover;
}

/* =========================
   MOBILE
========================= */


/*ZAČÁTEK O MNĚ*/
/* ===== O MNĚ ===== */

.O_MNE_CELE {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.O_MNE_RAMECEK {
    display: flex;
    align-items: center;
    gap: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1100px;
    margin: auto;
justify-content: flex-start;
    padding: 40px;

    border-radius: 25px;

    background: rgba(235, 213, 180, 0.699); /* 🔥 průhledné */
    backdrop-filter: blur(5px); /* 🔥 luxus */

    border: 1px solid #8f6838;

    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.O_MNE_RAMECEK:hover {
    transform: scale(1.005); /* 🔥 zvětšení */
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
    
/* foto */
.O_MNE_FOTKA {
    width: 350px;
    border-radius: 20px;
    transition: 0.3s;
    border: 2px solid #8f6838;
}
.O_MNE_FOTKA:hover {
    transform: scale(1.1);
}

/* text */
.O_MNE_INFO {
    max-width: 500px;
      margin-top: -80px;
      display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.O_MNE_INFO h2 {
    font-size: 36px;
    margin-bottom: -10px;
    color: #333;
}

.O_MNE_INFO p {
    font-size: 16px;
    color: #2b2b2b;
    line-height: 1.7;
    flex: 1; /* 🔥 zabere celý prostor */
    max-width: none;
}



#omne {
    position: relative;

    background: url("fotky/hlavnístranka.png.jpg") center/cover no-repeat;

    padding: 120px 20px;
}
#omne::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(83, 72, 54, 0.356); /* 🔥 klíč */
}
/*KONEC O MNĚ*/
#informace {
    padding: 120px 20px;
    text-align: center;

    background: url("fotky/IMG_7413.jpg") center/cover no-repeat;
    position: relative;
}

#informace::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(83, 72, 54, 0.35);
}

/* nadpis */
.INFO_TITLE {
    position: relative;
    z-index: 2;
    color: rgb(0, 0, 0);
    font-size: 36px;
    margin-bottom: 50px;
}

/* grid */
.INFO_GRID {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 místo 3 */
    gap: 40px;

    max-width: 1200px;
    margin: auto;
}

/* 🔥 třetí bublina přes celou šířku */
.INFO_CARD:nth-child(3) {
    grid-column: span 2;
    max-width: 700px;   /* 🔥 omezí šířku */
    margin: 0 auto;     /* 🔥 vycentruje */
}
/* bubliny */
.INFO_CARD {
    padding: 0px 25px;
    border-radius: 25px;
margin-top: 0;
    background: rgba(235, 213, 180, 0.671);
    backdrop-filter: blur(15px);
text-align: left;
    border: 1px solid #8f6838;

    color: rgb(0, 0, 0);

    
}


/* text */
.INFO_CARD h3 {
    margin-bottom: 10px;
    font-size: 20px;
    
}
.INFO_CARD h2 {
    padding: 0px 20px;
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
}
.INFO_CARD p {
    font-size: 15px;
    line-height: 1.6;
}

/*ZAČÁTEK CENÍKU*/
#sluzby {
    padding: 100px 20px;
    text-align: center;
    position: relative;

    background: url("fotky/IMG_7450.jpg") center/cover no-repeat;

    
}
#sluzby::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(83, 72, 54, 0.356); /* 🔥 klíč */
}
#sluzby h2 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000000;
    z-index: 10;
}

#Služby h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #4b3526;
    margin: 15px auto 0;
    border-radius: 2px;
    z-index: 4;
}

.SLUŽBY_VŠECHNY {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}
.SLUŽBA_BOX h3 {   
    font-size: 27px;
    margin-bottom: 12px;
}
.SLUŽBA_BOX {
     background: rgba(235, 213, 180, 0.712); /* 🔥 lehce průhledné */
     backdrop-filter: blur(7px);
    padding: 5px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-size: 19px;
    color: inherit;
    display: block;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
     border: 1.2px solid #8f6838;
}

.SLUŽBA_BOX:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    
}

.CENA_SLUŽBY {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.POPIS_SLUŽBY {
    font-size: 19px;
      font-weight: 550;
      
}


/* mobil */

    

/*KOENC CENÍKU*/
#relaxacni {
    background: url("fotky/IMG_7433.jpg") center/cover no-repeat;
}

#masaz {
    background: url("fotky/IMG_7436.jpg") center/cover no-repeat;
}

#hydratace {
    background: url("fotky/IMG_7431.jpg") center/cover no-repeat;
}

#aroma {
    background: url("fotky/IMG_7440.jpg") center/cover no-repeat;
}

#regenerace {
    background: url("fotky/IMG_7434.jpg") center/cover no-repeat;
}
.DETAIL_SLUZBY { 
    padding: 70px 20px;
    position: relative;

    
}

.DETAIL_SLUZBY::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.DETAIL_BOX {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;

    display: flex;
    gap: 40px;
    align-items: center;

    padding: 35px;

    border-radius: 25px;

    background: rgba(235, 213, 180, 0.733);
    backdrop-filter: blur(7px);

    border: 1.2px solid #8f6838;
}

.DETAIL_TEXT {
    flex: 1;
    color: rgb(0, 0, 0);
}

.DETAIL_TEXT h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.DETAIL_TEXT p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.DETAIL_TEXT ul {
    margin-bottom: 15px;
    padding-left: 18px;
}

.DETAIL_TEXT li {
    margin-bottom: 6px;
}

.DETAIL_IMAGE {
    flex: 1;
}

.DETAIL_IMAGE img {
    width: 100%;
    border-radius: 15px;
}

/* zpět */
.zpet {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    color: #272626;
    text-decoration: none;
}

/* 🔥 IG BACKGROUND SEKCE */
.IG_SECTION {
    position: relative;
    background: url("fotky/IMG_7426.jpg") center/cover no-repeat;
    padding: 180px 10px;
   
   
     
    
     
}

/* 🔥 ztmavení */


/* 🔥 GLASS BOX */
.IG_BOX {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: auto;
    padding: 50px;

    border-radius: 30px;

    background: rgba(235, 213, 180, 0.445);
    backdrop-filter: blur(10px);

    border: 1px solid #8f6838;
    box-sizing: border-box;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    
}

/* 🔥 GRID */
.IG {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}

/* 🔥 IMG */
.IG img {
    width: 80%;
    aspect-ratio: 4 / 6,5;
    object-fit: cover;
    border-radius: 7px;
    transition: 0.3s;
}

.IG img:hover {
    transform: scale(1.2);
    filter: brightness(0.9);
}

/* 🔥 KONTAKT POD TÍM */
.KONTAKT_INFO {
    text-align: center;
    margin-top: -10px;
    font-size:23px ;
}
.KONTAKT_INFO a {
    text-decoration: none; /* pryč podtržení */
    color: #000000; /* tvoje brand barva */
    font-weight: 500;
    transition: 0.3s;
    font-size: 23px;
}

.KONTAKT_INFO a:hover {
    color: #000;
}
.IG_TITLE {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* 🔥 styl odkazu */
.IG_TITLE a {
    text-decoration: none; /* pryč s podtržením */
    color: #000000; /* elegantní barva */
    font-weight: 600;
    transition: 0.3s;
}

/* hover efekt */
.IG_TITLE a:hover {
    color: #664a25;
}
.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: #8f6838;
}
.fb-link img {
    width: 25px;
    height: 25px;
    transition: 0.3s;
}


/* 🔥 hover NA CELÝ ELEMENT */
.fb-link:hover {
    transform: scale(1.2);
}
.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: #8f6838;

    transition: 0.3s;
}

.ig-link img {
    width: 23px;
    height: 23px;
    object-fit: contain;

    transition: 0.3s;
}

/* 🔥 hover na celý element */
.ig-link:hover {
    transform: scale(1.2);
}

.ig-link:hover img {
    transform: scale(1.1);
}

.RESERVIO_POPUP {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.RESERVIO_BOX {
    width: 95%;
    max-width: 1000px;
    height: 90vh;

    background: white;
    border-radius: 25px;
    overflow: hidden;

    position: relative;
}

.RESERVIO_BOX iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.closeBtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}
body {
    overflow-x: hidden;
}
/* =========================
   INSTAGRAM FEED
========================= */

.IG_FEED {
    padding: 80px 20px;

    background: rgba(235, 213, 180, 0.35);
  background: url("ChatGPT Image 9. 5. 2026 21_34_43.jpg") center/cover no-repeat;
    text-align: center;
}

.IG_FEED_TITLE {
    font-size: 34px;
    margin-bottom: 40px;
}
.IG_FEED_TITLE a {
    text-decoration: none;
    color: #000000;

    transition: 0.3s;
}
.IG_FEED_TITLE a:hover {
    color: #664a25;
}
.IG_GRID {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    max-width: 750px;
    margin: auto;
}

.IG_GRID img {
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 5px;
 border: 1.5px solid #8f6838;
    transition: 0.3s ease;
}
.IG_FEED_BOX {
    max-width: 950px;

    margin: auto;

    padding: 40px;

    border-radius: 30px;

    background: rgba(221, 199, 164, 0);

    backdrop-filter: blur(5px);

    border: 1px solid #8f6838;

    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.IG_GRID img:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* HERO */

    .HLAVNÍ_STRÁNKA {
        padding: 90px 0 40px;
        overflow: hidden;
    }

    .VNITŘEK_HLAVNÍ_STRÁNKY {
        width: 95%;
        max-width: 100%;

        min-height: 80vh;

        margin: 0 auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        position: relative;
    }

    .LOGO_WRAP {
    position: relative;

    top: auto;
    left: auto;

    transform: none;

    margin-bottom: 0px;
}

    .LOGO_WRAP::after {
        width: 280px;
        height: 280px;

        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        filter: blur(50px);
    }

    .LOGO_FIRMY {
        position: relative;

        top: auto;
        left: auto;

        transform: none;

        width: 120px;

        margin-top: 20px;
    }

    .KONTENT_HLAVNÍ_STRÁNKY {
        position: relative;

        bottom: auto;
        left: auto;

        transform: none;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        margin-top: 180px;
    }

    .OTEVIRACI_DOBA {
    position: relative;

    text-align: center;

    font-size: 17px;
    line-height: 1.5;

    margin-top: 0;
    margin-bottom: 25px;

    z-index: 2;
}
.OTEVIRACI_DOBA::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 280px;
    height: 90px;

    background: linear-gradient(
    90deg,
    rgba(235, 213, 180, 0) 0%,
    rgba(235, 213, 180, 0.89) 15%,
    rgba(235, 213, 180, 0.877) 85%,
    rgba(235, 213, 180, 0) 100%
    );


    z-index: -1;
}
    .btn {
        padding: 12px 22px;
        font-size: 15px;
    }

    /* ABOUT */

    .O_MNE_RAMECEK {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .O_MNE_FOTKA {
        width: 100%;
        max-width: 300px;

        height: 300px;
        object-fit: cover;
    }

    .O_MNE_INFO {
        align-items: center;
        margin-top: -40px;
    }

    /* INFO */

    .INFO_GRID {
    display: grid;
    grid-template-columns: 1fr;

    width: 100%;
}
.INFO_GRID {
    display: grid;
    grid-template-columns: 1fr;

    width: 100%;
}
    /* SLUŽBY */

    .SLUŽBY_VŠECHNY {
        grid-template-columns: 1fr;
    }

    .DETAIL_BOX {
        flex-direction: column;
        text-align: center;
    }

    /* IG */

    .IG {
        grid-template-columns: repeat(2, 1fr);
    }

    .IG img {
        width: 100%;
    }

    /* NAV */

    nav {
        gap: 10px;
        flex-wrap: wrap;

        padding: 10px 5px;
        width: 100%;
    
    }

    nav a {
        margin: 5px;
        font-size: 14px;
    }

    .dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* POPUP */

    .RESERVIO_BOX {
        height: 80vh;
    }
    .INFO_CARD:nth-child(3) {
    grid-column: span 1;
}
.IG_GRID {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}
.IG_GRID img {
    width: 100%;

    max-width: 130px;

    margin: auto;

    display: block;
}
.KONTAKT_INFO p {
    font-size: 17px;
}
.fb-link img,
.ig-link img {
    width: 20px;
    height: 20px;
}
.fb-link,
.ig-link {
    font-size: 19px !important;
}
.POUKAZ_BOX {
        flex-direction: column;

        text-align: center;

        gap: 30px;

        padding: 25px;
    }

    .POUKAZ_TEXT h2 {
        font-size: 34px;
    }

    .POUKAZ_TEXT p {
        font-size: 15px;
    }
    .O_MNE_FOTKA:hover,
.IG_GRID img:hover,
.LOGO_FIRMY:hover,
.SLUŽBA_BOX:hover,
.btn:hover,
.fb-link:hover,
.ig-link:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}
}