/* Global reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Inter", sans-serif;
    background: #fdfbf8;
    color: #2a2a2a;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Background texture */
.site-bg {
    position: fixed;
    inset: 0;
    background: url("../img/bg-texture.png") center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

/* HEADER */
.header {
    padding: 30px 5%;
    text-align: center;
}

.topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Logo uprostřed */
.logo {
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2a2a2a;
}

.btn-reserve {
    position: absolute;
    right: 0;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c7a57a 0%, #d5b894 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform .3s cubic-bezier(.21,1,.24,1),
        box-shadow .3s cubic-bezier(.21,1,.24,1),
        background .35s ease;
    box-shadow:
        0 4px 10px rgba(0,0,0,.07),
        0 0 0 0 rgba(199,165,122,0.35);
    animation: pulseGlow 3.2s ease-in-out infinite;
}

/* Hover interactions */
.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(0,0,0,.15),
        0 0 30px rgba(199,165,122,.25);
    background: linear-gradient(135deg, #d5b894 0%, #c7a57a 100%);
}

/* Active/tap interaction */
.btn-reserve:active {
    transform: scale(.96) translateY(-1px);
    box-shadow:
        0 8px 16px rgba(0,0,0,.12);
}

/* Smooth pulsace jako dýchání */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 4px 10px rgba(0,0,0,.07),
            0 0 0 0 rgba(199,165,122,0.35);
    }
    50% {
        box-shadow:
            0 4px 14px rgba(0,0,0,.10),
            0 0 22px 8px rgba(199,165,122,0.18);
    }
}

/* Navigation */
.nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav a {
    position: relative;        /* ← MUSÍ být, aby underline fungoval */
    text-decoration: none;
    font-size: 17px;
    color: #b79a7f;
    font-weight: 500;
    transition: opacity .2s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #b79a7f;
    transition: width .25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    opacity: .6;
}


/* HERO */
.hero {
    padding: 80px 5% 140px;
	margin-top: -120px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* zvětšeno – posune text doprava */
}

.hero-left {
    width: 55%;
    padding-left: 110px;
    margin-top: -80px;
}

.hero-left h1 {
    font-size: 62px;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #c7a57a;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/* Hero photo shape */
.hero-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-photo {
    transform: translate(40px, -40px);
    width: 110%;
}
.logo-img {
    height: 92px;        /* můžeš doladit podle reálného loga */
    width: auto;
    display: block;
    margin: 0 auto;      /* zarovnání na střed */
    user-select: none;
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
}
.btn-hero {
    display: inline-block;
    padding: 16px 38px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, #c7a57a 0%, #d5b894 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition:
        transform .35s cubic-bezier(.21,1,.24,1),
        box-shadow .35s cubic-bezier(.21,1,.24,1),
        background .35s ease;
    box-shadow:
        0 4px 14px rgba(0,0,0,.08),
        inset 0 0 0 0 rgba(255,255,255,0);
}

/* Hover = luxusní micro-lift */
.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 28px rgba(0,0,0,.12),
        0 4px 12px rgba(199,165,122,.25);
    background: linear-gradient(135deg, #d5b894 0%, #c7a57a 100%);
}

/* Press effect – profesionální “tap-down” */
.btn-hero:active {
    transform: translateY(-1px) scale(.97);
    box-shadow:
        0 6px 16px rgba(0,0,0,.1);
}

/* Fancy shine overlay (lepší než běžný hover) */
.btn-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0) 60%
    );
    opacity: 0;
    transition: opacity .4s ease;
}

.btn-hero:hover::after {
    opacity: .55;
}

/* Klávesnice / accessibility */
.btn-hero:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(199,165,122,.4),
        0 10px 28px rgba(0,0,0,.12);
}
/* ABOUT SECTION */
.about {
    padding: 140px 5% 160px;
	margin-top: -250px;
}

.about-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; /* bylo 60–70px */
}

.about-left {
    width: 48%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 120px;
}

/* Čistá fotka bez pozadí */
.about-photo-wrap {
    width: 600px;
    height: auto;
    flex-shrink: 0;
    position: relative;
}

/* Fotka bez stínů a bez čehokoliv navíc */
.about-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: none !important; /* ← odstraní bílé pozadí efekt */
    background: transparent !important; /* ← jistota */
}
/* RIGHT – text part */
.about-right {
    width: 48%;
    padding-right: 40px;
	margin-right: 70px;
}

.about-right h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #2a2a2a;
}

.about-right p {
    font-size: 20px;
    line-height: 1.55;
    color: #4e4e4e;
    margin-bottom: 22px;
}
/* CTA SECTION */
.cta-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.cta-box {
    width: 100%;
    max-width: 1500px;
    background: #d5d3cf;
    border-radius: 28px;
    padding: 80px 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);

    margin-top: -90px; /* ← posun nahoru */

    /* NEW: PNG BACKGROUND */
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/cta-bg.png") center/cover no-repeat;
    opacity: 0.75; /* jemné, luxusní */
    z-index: 0;
    pointer-events: none;
}

/* obsah nahoře nad PNG */
.cta-box > * {
    position: relative;
    z-index: 2;
}

/* TEXT */
.cta-left h3 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-left p {
    font-size: 20px;
    color: #f7f7f7;
    opacity: .9;
}

/* BUTTON */
.cta-btn {
    padding: 18px 42px;
    background: linear-gradient(135deg, #c7a57a 0%, #d6bea0 100%);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.services {
    padding: 120px 0;
    display: flex;
    justify-content: center;
}

.services-box {
    width: 100%;
    max-width: 1200px;   /* užší, luxusnější */
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
	margin: 0 auto; 
}

/* LEFT MENU */
.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 20px;
    color: #7d6e63;
    padding: 14px 0;
    cursor: pointer;
    transition: .25s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.services-list li:hover {
    color: #c7a57a;
}

.services-list li.active {
    color: #c7a57a;
    font-weight: 600;
}

.services-list {
    width: 340px;
}

.services-detail {
    flex: 1;
    padding-left: 60px;

    max-width: 700px;
    min-width: 700px;  /* ← tohle ti chybělo! */
}

.services-detail h3 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.services-detail p {
    font-size: 20px;
    line-height: 1.55;
    color: #4e4e4e;
    margin-bottom: 32px;
}

/* FOOTER (button + price) */
.service-footer {
    display: flex;
    align-items: center;
    gap: 28px;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #c7a57a;
}

.service-btn {
    padding: 16px 38px;
    background: linear-gradient(135deg, #c7a57a 0%, #d6bea0 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;

    transition: .3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.service-detail .btn-main {
    margin-top: 20px;
}
.service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.services-box::after {
    content: "";
    position: absolute;
    left: 340px; /* přesně šířka .services-list */
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
}
.gallery-section {
    padding: 150px 0;
    text-align: center;
}

.gallery-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin-bottom: 60px;
}

/* Wrapper nyní relativní kvůli pozicování tlačítek */
.gallery-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Kontejner slideru */
.gallery {
    position: relative;
    width: 100%;
    height: 480px; /* výška podle střední fotky */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Základní položka */
.gallery-item {
    width: 260px;
    height: 340px;
    overflow: hidden;
    border-radius: 22px;
    transition: all .45s ease;
    opacity: 0;
    pointer-events: none;

    position: absolute;
    transform: scale(.7);
}

/* Fotky uvnitř */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEVÁ fotka */
.gallery-item.left {
    opacity: .6;
    transform: translateX(-320px) scale(.78);
    z-index: 1;
    pointer-events: auto;
}

/* STŘEDNÍ fotka */
.gallery-item.center {
    width: 360px !important;
    height: 480px !important;
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.18));
    z-index: 3;
    pointer-events: auto;
}

/* PRAVÁ fotka */
.gallery-item.right {
    opacity: .6;
    transform: translateX(320px) scale(.78);
    z-index: 1;
    pointer-events: auto;
}

/* Ostatní skryté */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(.6);
    z-index: 0;
}

/* ŠIPKY */
.gallery-btn {
    background: #c7a57a;
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    font-size: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* LEVÁ šipka */
.gallery-prev {
    left: 380px;
}

/* PRAVÁ šipka */
.gallery-next {
    right: 380px;
}

.gallery-btn:hover {
    background: #d6bea0;
    transform: translateY(-50%) translateY(-3px);
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Shared column style */
.contact-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* MAPA */
.contact-map iframe {
    width: 420px;
    height: 420px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* HOW BOXES */
.contact-how {
    max-width: 340px;
}

.how-box strong {
    font-size: 20px;
    font-weight: 700;
}

.how-box p {
    line-height: 1.55;
    font-size: 18px;
    margin-bottom: 10px;
}

/* RIGHT INFO */
.contact-info {
    max-width: 340px;
}

.contact-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.contact-socials {
    display: flex;
    gap: 12px;
}
.services-header {
    max-width: 900px;
    text-align: center;
    margin: 40px auto 40px auto !important;
    padding: 0 20px;
}


.services-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.services-header p {
    font-size: 20px;
    line-height: 1.55;
    color: #4e4e4e;
    max-width: 780px;
    margin: 0 auto;
}

.contact-socials a img {
    width: 48px;       /* menší ikonky */
    height: 48px;
    object-fit: contain;
    opacity: 0.8;
    transition: transform .25s ease, opacity .25s ease;
}

.contact-socials a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

.contact-heading {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    margin-bottom: 20px;
    text-align: center;
    color: #2a2a2a;
}

.contact-seo {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.55;
    color: #4e4e4e;
}
.footer {
    width: 100%;
    padding: 40px 5% 50px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 120px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #b79a7f;
    letter-spacing: 1px;
}

.footer-right {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-right a {
    font-size: 15px;
    color: #7d7d7d;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-right a:hover {
    color: #c7a57a;
}

/* spodní copyright */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    opacity: .55;
    font-size: 14px;
    color: #6d6d6d;
}

.footer-bottom strong {
    color: #b79a7f;
    font-weight: 600;
}
.service-gallery {
    display: flex;
    gap: 22px;
    margin-top: 40px;
}

.service-gallery img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: .3s ease;
}

.service-gallery img:hover {
    transform: scale(1.05);
}

/* =========================================================
   PNG BACKGROUNDS FOR EACH SECTION – LUXUSNÍ DEKORACE
   ========================================================= */

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/hero-bg.png") center/cover no-repeat;
    opacity: 0.85;
    pointer-events: none;
    z-index: -1;
}

/* ABOUT */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/about-bg.png") center/cover no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

/* CTA BOX */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/cta-bgg.png") center/cover no-repeat;
    opacity: 1;       /* můžeš upravit podle potřeby */
    pointer-events: none; /* aby klikání na tlačítka fungovalo */
    z-index: 10;         /* vyšší než text */
}

/* obsah CTA boxu pod fotkou */
.cta-box > * {
    position: relative;
    z-index: 5;  /* nižší než ::before */
}


/* SLUŽBY */
.services {
    position: relative;
    overflow: visible;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/services-bg.png") center/cover no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

/* GALERIE */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/gallery-bg.png") center/cover no-repeat;
    opacity: 0.65;
    pointer-events: none;
    z-index: -1;
}

/* KONTAKT */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

/* FOOTER – decentní pozadí */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/footer-bg.png") center/cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
}
.nav {
    position: relative;
    z-index: 999;
}
.header {
    position: relative;
    z-index: 1000;
}
.nav a, 
.nav {
    pointer-events: auto !important;
}
.hero-brands {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 28px;
    opacity: 0.85;
}

.hero-brands img {
    height: 42px;
    width: auto;
    display: block;
    filter: grayscale(20%);
    opacity: 0.8;
    transition: .25s ease;
}

.hero-brands img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
}

.hb-quote {
    width: 100%;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hb-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg/quote-bg.png") center/cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
}

.hb-quote-inner {
    max-width: 760px;
    margin: 0 auto;
}

.hb-quote-label {
    display: block;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b79a7f;
    margin-bottom: 22px;
    opacity: 0.85;
}

/* — CITÁT — rovně, jen luxusní italika */
.hb-quote-text {
    font-family: "Playfair Display", serif;
    font-style: italic;                 /* <<< Tohle bylo potřeba */
    font-size: 44px;
    line-height: 1.25;
    color: #2a2a2a;
    margin-bottom: 26px;

    letter-spacing: 0.3px;              /* jemný vzduch */
    font-weight: 500;                   /* elegantní italika */
}

/* Autor mírně jemnější italika */
.hb-quote-author {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 18px;
    color: #9c8a77;
}

/* ============================
   COOKIES BAR – HANALE STYL
   ============================ */

.cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;

    background: #ffffffcc;
    backdrop-filter: blur(10px);
    border-radius: 26px;
    padding: 26px 34px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);

    display: none; /* default hidden, zobrazí JS */

    z-index: 99999;
    animation: fadeUpCookies .45s ease forwards;
}

/* fade-in efekt */
@keyframes fadeUpCookies {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.cookie-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-size: 17px;
    line-height: 1.55;
    color: #4e4e4e;
}

/* Buttons */
.cookie-buttons {
    display: flex;
    gap: 16px;
}

/* hlavní tlačítko */
.cookie-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #c7a57a 0%, #d6bea0 100%);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: .3s ease;
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

/* textové tlačítko */
.cookie-link {
    background: none;
    border: none;
    font-size: 16px;
    color: #b79a7f;
    cursor: pointer;
    text-decoration: underline;
    opacity: .8;
    transition: .25s ease;
}

.cookie-link:hover {
    opacity: 1;
}    
/* =========================================================
   MOBILNÍ REŽIM – JEDINÝ BREAKPOINT (max-width: 768px)
   ========================================================= */
@media (max-width: 768px) {

    /* ===== HEADER ===== */
    .header {
        padding: 20px 5%;
    }

    .btn-reserve {
        display: none;
    }

    .nav {
        gap: 18px;
        font-size: 16px;
        flex-wrap: wrap;
    }

    /* ===== HERO ===== */
    .hero {
        padding: 60px 5% 120px !important;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        width: 100%;
        padding-left: 0 !important;
        margin-top: 0 !important;
        position: relative;
        top: 60px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .hero-photo-wrap,
    .hero-right {
        display: none !important;
    }

    /* ===== ABOUT ===== */
    .about {
        padding: 80px 5% 100px;
        margin-top: 0 !important;
    }

    .about-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-left,
    .about-right {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .about-photo-wrap {
        width: 80%;
        margin: 0 auto;
    }

    .about-right h2 {
        font-size: 38px;
    }

    /* ===== CTA ===== */
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        gap: 30px;
    }

    .cta-left h3 {
        font-size: 36px;
    }

    /* ===== SERVICES ===== */
    .services-box {
        flex-direction: column;
        gap: 28px;
    }

    .services-list {
        width: 100%;
        position: relative;
        overflow: visible;
    }

    .services-list ul {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 12px;
        padding: 0 16px;
        margin: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-list ul::-webkit-scrollbar { display: none; }

    .services-list ul li {
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 10px 18px;
        border-radius: 40px;
        background: rgba(0,0,0,0.05);
        font-size: 14px;
    }

    .services-detail {
        padding: 0 16px;
        max-width: 100%;
        min-width: 100%;
    }

    /* BUBBLES */
    .service-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 12px auto;
        width: 100%;
		position: relative;
		z-index: 50;
    }

    .services-box {
        display: flex;
        flex-direction: column;
    }

    /* Pro jistotu a čistotu – aby slider nebyl nalepený */
    .services-list {
        margin-top: 6px;
    }
    /* ===== GALLERY ===== */
    .gallery {
        height: 360px !important;
    }

    .gallery-item.center {
        width: 260px !important;
        height: 360px !important;
    }

    .gallery-prev { left: 12px; }
    .gallery-next { right: 12px; }

    /* ===== KONTAKT ===== */
    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 20px 60px;
        overflow: hidden;
    }

    .contact-info,
    .contact-how {
        width: 100%;
        max-width: 420px;
        text-align: center;
        margin: 0 auto;
    }

    .contact-map {
        width: 100%;
        max-width: 100%;
        display: block;
        overflow: hidden;
    }

    .contact-map iframe {
        width: 100% !important;
        height: 320px !important;
        border-radius: 18px;
        display: block;
    }

    .contact-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .contact-info,
    .contact-how {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }

    /* Nadpisy a texty ne až do kraje */
    .contact-heading,
    .contact-seo {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Social ikony do středu */
    .contact-socials {
        justify-content: center !important;
        display: flex;
        width: 100%;
    }
    /* ===== FOOTER ===== */
    .footer {
        padding: 50px 5% 60px;
        text-align: center;
    }

    .footer-inner,
    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
        gap: 16px;
    }

    .footer-left {
        font-size: 22px;
    }

    /* Zobrazení bublin správně nad sliderem */
	.service-dots {
		position: relative;
		z-index: 50;                 /* nad vším kolem */
		display: flex;
		justify-content: center;
		gap: 10px;
		margin: 12px auto 18px auto;
		padding-top: 10px;
	}

	/* Oprava negativního marginu headeru sekce služeb */
	.services-header {
		margin: 40px auto 20px auto !important;
	}

	/* Rezerva prostoru mezi headerem a sliderem */
	.services-list {
		margin-top: 12px !important;
	}

	.service-dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #c7a57a;
		opacity: .35;
		transition: .25s ease;
	}

	.service-dot.active {
		opacity: 1;
		transform: scale(1.25);	
	}
}

	



