:root {
    /* Brand Colors - Exact from flyer */
    --clr-primary: #F6B21A;
    /* Žlutá */
    --clr-secondary: #2D8A84;
    /* Tmavší mintová */
    --clr-bg-dark: #267675;
    /* Tmavě zelená Hero */
    --clr-text-dark: #184B47;
    /* Nejtmavší zelená pro text */
    --clr-mint: #BFE8DD;
    /* Světlá mintová */
    --clr-light-gray: #e8f5f2;
    /* Velmi světlá mintová pro pozadí */
    --clr-white: #FFFFFF;
    --clr-pastel: #A8D4B0;
    /* Pastelová zelená (jako hamburger menu) */

    --radius-flyer: 40px;
    --container-max: 1300px;
}

/* Base Setup */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body,
input,
textarea,
button {
    font-family: 'Outfit', sans-serif;
    color: var(--clr-text-dark);
    background-color: var(--clr-white);
    line-height: 1.8;
    /* Zvýšeno pro vzdušnější text */
    overflow-x: hidden;
    font-size: 1.3rem;
    /* Základní velikost na desktopu */
}

p,
li {
    font-size: 1.3rem;
    line-height: 1.8;
}

/* Specifické nastavení pro texty v seznamových boxech (žluté bloky) */
.grid-item--yellow p,
.grid-item--yellow li,
#box-resime p,
#box-resime li {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Typography with character */
h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--clr-text-dark);
}

h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-shadow: none !important;
    /* Odstraněn stín globálně */
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
}

.text-white {
    color: var(--clr-white) !important;
}

.text-yellow {
    color: var(--clr-primary) !important;
}

/* Buttons - Fun and bouncy */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    gap: 0.8rem;
}

.btn--primary {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    box-shadow: 0 15px 30px rgba(246, 178, 26, 0.4);
}

.btn--secondary {
    background: var(--clr-mint);
    color: var(--clr-text-dark);
}

.btn--pastel {
    background: var(--clr-pastel);
    color: var(--clr-text-dark);
    box-shadow: none !important;
    /* Bez stínu podle přání */
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-7px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Header - Transparent to solid */
/* Header - Transparent to solid */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0.3rem 0;
    transition: all 0.4s ease-in-out;
    background-color: var(--clr-bg-dark);
}

.container--nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled,
.header--scrolled-always {
    background-color: var(--clr-text-dark) !important;
    padding: 0.3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Na podstránkách - logo vždy viditelné */
.header--scrolled-always .logo {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Bílý text v menu po scrollu - pouze na desktopu */
@media (min-width: 1101px) {
    .header.scrolled .nav__link:not(.nav__link--icon) {
        color: white !important;
    }
}

/* Specific nav icon and button styles */
.nav__link--icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-pastel);
    /* Mintově zelená */
    color: var(--clr-text-dark) !important;
    /* Tmavě zelená ikona */
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    /* Bez okrajů */
    transition: all 0.3s ease;
}

/* Bílé kolečko s logem */
.nav__link--icon-white {
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav__link--icon:hover {
    background: var(--clr-primary);
    /* Žlutá při najetí */
    transform: translateY(-3px);
}

.nav__link--icon::after {
    display: none !important;
    /* Bez linky pod kroužkem */
}

.btn--nav {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    box-shadow: none;
}

.header.scrolled .btn--nav {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
}

.header.scrolled .nav-toggle span {
    background: var(--clr-white);
}

.logo img {
    height: 65px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: 0.3s;
}

.header.scrolled .logo img {
    height: 55px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.nav__list {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    list-style: none;
}

.nav__link {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--clr-primary);
    transition: 0.3s;
}

.nav__link:hover::after {
    width: 100%;
}

/* HERO - The Masterpiece */
.hero {
    min-height: calc(100vh - 70px);
    background: #267675 url('Obrazky/Desktop3a.jpg') no-repeat center top;
    background-size: cover;
    background-position: center 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 260px 0 60px 0;
    /* Posunuto více dolů na přání uživatele */
    z-index: 0;
}

.hero>.container {
    transform: none;
}



.hero__mobile-img {
    display: none;
    /* Skryto na desktopu */
}

/* Mobilní kontaktní info - skryto na desktopu */
.hero__mobile-contact {
    display: none;
}

.mobile-header-icons {
    display: none;
}

/* Logo v mobilním menu - skryté na desktopu */
.nav__logo-mobile {
    display: none;
}

/* Lokace s ikonou */
.hero__location {
    font-size: 1.3rem;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 400;
}

.hero__location i {
    font-size: 1.4rem;
}

/* H1 s různými velikostmi textu */
.hero__content h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero__main-title {
    font-size: 1.15em;
    /* Zvětšeno na přání uživatele */
    display: block;
    letter-spacing: 0.05em;
    /* Vzdušnější text */
    line-height: 1.1;
}

.hero__location-title {
    font-size: 0.45em;
    /* 45% velikosti hlavního nadpisu */
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    /* Vzdušnější text */
    margin-top: 0.2rem;
}

.hero__content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    transform: translateY(20px);
    /* Posunuto dolů na přání uživatele */
    margin-right: auto;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Odstranění stínu z ikonek kytiček a resetování seznamu */
.hero__list {
    list-style: none;
    padding-left: 0;
    margin: 3rem 0;
}

.hero__list li i {
    text-shadow: none !important;
}



/* Globální styl pro Labely (stejný jako na mobilu - bez rámečku) */
.label {
    font-size: 0.9rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
    border-radius: 0;
}

/* Sections & Asymmetry */
.section {
    padding: 8rem 0;
    position: relative;
}

.section--mint {
    background: var(--clr-mint);
    border-radius: 80px 0 80px 0;
    margin: 2.5rem 0 0 0;
}

.section--dark {
    background: var(--clr-bg-dark);
    color: white;
    border-radius: 0 80px 0 80px;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Dynamic Image Containers */
.img-hravy {
    position: relative;
    border-radius: 40px 100px 40px 100px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.img-hravy img {
    width: 100%;
    transition: 1s;
}

.img-hravy:hover img {
    transform: scale(1.1);
}

/* Grid System - Fixed and Expanded */
.grid-hravy {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: center;
}

.vet-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Approach Images Hover Effect */
.approach-visual {
    position: relative;
    cursor: pointer;
}

.approach-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--clr-primary);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
    bottom: -20px;
    left: -20px;
    /* Výchozí pozice vlevo dole */
    transition: all 0.5s ease;
}

.approach-img {
    width: 120%;
    max-width: 120%;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.approach-visual:hover .approach-img {
    transform: scale(1.05);
}

/* Zachování zrcadlení pro sekci Můj přístup při hoveru */
.approach-img--mirrored {
    transform: scaleX(-1) translateX(-45%);
}

.approach-visual:hover .approach-img--mirrored {
    transform: scaleX(-1) scale(1.05);
}

.grid-item {
    border-radius: var(--radius-flyer);
    padding: 3.5rem;
    transition: 0.4s;
}

.grid-item--white {
    background: white;
    box-shadow: 0 20px 50px rgba(24, 75, 71, 0.1);
}

.grid-item--yellow {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
}

.grid-item--mint {
    background: var(--clr-secondary);
    color: white;
}

.col-12 {
    grid-column: span 12;
}

.col-8 {
    grid-column: span 8;
}

.col-7 {
    grid-column: span 7;
}

.col-6 {
    grid-column: span 6;
}

.col-5 {
    grid-column: span 5;
}

.col-4 {
    grid-column: span 4;
}

/* Custom Overlapping Images */
.overlap-container {
    position: relative;
    padding: 2rem;
}

.img-main {
    width: 80%;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.img-sub {
    width: 60%;
    position: absolute;
    bottom: -10%;
    right: 0;
    border: 8px solid var(--clr-bg-dark);
    border-radius: 30px;
    z-index: 3;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

/* Vet Gallery Slider */
.vet-gallery {
    width: 80%;
    position: relative;
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 3/4;
    /* Portrait format */
    background: #000;
}

.vet-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.vet-slide.active {
    opacity: 1;
}

.vet-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vet-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.vet-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vet-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.vet-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Playful labels */
.label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* More playful blobs */
.playful-blob {
    position: absolute;
    z-index: -1;
    filter: blur(50px);
    opacity: 0.3;
}

.blob--1 {
    width: 400px;
    height: 400px;
    background: var(--clr-primary);
    top: -100px;
    left: -200px;
}

.blob--2 {
    width: 300px;
    height: 300px;
    background: var(--clr-mint);
    bottom: -50px;
    right: -150px;
}

/* Facebook Reviews Section Styles */
.fb-review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-flyer);
    box-shadow: 0 15px 35px rgba(24, 75, 71, 0.08);
    border: 1px solid rgba(24, 75, 71, 0.05);
    height: 100%;
    transition: 0.3s;
}

.fb-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(24, 75, 71, 0.12);
}

.fb-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fb-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--clr-mint);
}

.fb-user-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--clr-text-dark);
}

.fb-stars {
    color: #f6b21a;
    font-size: 0.8rem;
}

.fb-review-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--clr-text-dark);
    margin-bottom: 0;
}

.fb-logo-small {
    color: #1877F2;
    font-size: 1.2rem;
    margin-left: auto;
}


/* My Approach Visuals */
.approach-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    background: white;
    border-radius: 50%;
    z-index: 1;
    border: 2px solid var(--clr-primary);
    outline: 15px solid rgba(246, 178, 26, 0.1);
}

.approach-img {
    position: relative;
    z-index: 5;
    width: 150%;
    max-width: 650px;
    filter: drop-shadow(15px 15px 30px rgba(0, 0, 0, 0.1));
    transform: translateY(-10px);
    transition: transform 0.5s ease;
}

.approach-visual:hover .approach-img {
    transform: translateY(-25px) scale(1.02);
}

.approach-img--large {
    transform: translateY(-10px) scale(1.05);
}

.approach-visual:hover .approach-img--large {
    transform: translateY(-25px) scale(1.07);
}

.approach-img--shadow {
    filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.15));
}

/* Sekce Můj přístup - štěně */
.approach-visual--stene {
    margin-left: 80px;
    transform: translateY(100px);
}

.approach-circle--stene {
    background: var(--clr-primary);
    transform: scale(1.1);
    right: -30px;
    top: -50px;
}

/* Sekce Můj přístup 2 - dva psi */
.approach-visual--psi {
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-circle--psi {
    background: white;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    top: 220px;
    left: 50%;
}

/* Responsive */

/* Tablet na šířku (landscape) - iPad otočený */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        background: #267675 url('Obrazky/ipadnaležato.jpg') no-repeat center top;
        background-size: cover;
    }
}

/* Tablet na výšku (portrait) */
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
    .hero {
        background: #267675 url('Obrazky/tablet2.jpg') no-repeat center top;
        background-size: cover;
    }

    .hero__content {
        background: rgba(0, 0, 0, 0.2);
        padding: 1.5rem;
        border-radius: 25px;
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 1100px) {

    /* Základní nastavení */
    html {
        font-size: 16px;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Header na mobilu - průhledný */
    .header {
        position: fixed;
        padding: 1rem 0;
        background-color: transparent;
        width: 100%;
        max-width: 100vw;
    }

    .container--nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        overflow: visible;
        /* Aby kolečka nebyla ořízlá */
    }

    /* Logo defaultně skryté na mobilu (aby nezasahovalo do psa) */
    .logo {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    /* Na podstránkách logo viditelné i před scrollem */
    .page-subpage .logo {
        opacity: 1;
        visibility: visible;
    }

    /* Při scrollu se logo zobrazí */
    .header.scrolled .logo {
        opacity: 1;
        visibility: visible;
    }

    .logo img {
        height: 50px;
    }

    /* Mobilní header ikony - zelená kolečka */
    .mobile-header-icons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .mobile-action-icon {
        width: 52px;
        height: 52px;
        background: var(--clr-secondary);
        /* Zelená */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.4rem;
        transition: all 0.3s ease;
    }

    .mobile-action-icon:hover {
        background: var(--clr-primary);
        /* Žlutá */
        transform: scale(1.1);
    }

    /* Hamburger - zelené kolečko */
    /* Hamburger - zelené kolečko */
    .nav-toggle {
        width: 52px;
        height: 52px;
        background: var(--clr-secondary);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0;
        transition: all 0.3s ease;
        position: relative;
        /* Pro absolutní pozicování křížku */
    }

    .nav-toggle:hover {
        background: var(--clr-primary);
        transform: scale(1.1);
    }

    .nav-toggle span {
        width: 24px;
        /* Trochu širší čárky */
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: absolute;
        /* Absolutní pozice pro přesnou kontrolu */
    }

    /* Pozice čárek v zavřeném stavu */
    .nav-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .nav-toggle span:nth-child(2) {
        transform: translateY(0);
    }

    .nav-toggle span:nth-child(3) {
        transform: translateY(7px);
    }


    /* Když je menu otevřené */
    .nav-toggle.active {
        background: var(--clr-text-dark);
        /* Tmavá zelená */
    }

    .nav-toggle.active span {
        background: white !important;
        /* Bílé čárky */
    }

    /* Animace na křížek */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
        /* Odletí pryč */
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .section {
        padding: 2.5rem 0;
        /* Zmenšeno z 4rem na 2.5rem (podle požadavku) */
    }

    /* Hero sekce */
    .hero {
        text-align: center;
        padding: 340px 0 30px;
        /* Zmenšeno pro posunutí H1 výše */
        background: #267675 url('Obrazky/mobil4.jpg') no-repeat center top;
        background-size: 100% auto;
        overflow: hidden;
        max-width: 100vw;
    }

    .hero__mobile-img {
        display: none;
    }

    .hero>.container {
        flex-direction: column;
        transform: none;
    }

    .hero__circle-bg {
        display: block;
        width: 200px;
        height: 200px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
        top: 50%;
        outline-width: 8px;
    }

    .hero__content {
        margin: 0 auto;
        transform: none;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    /* Skleněný efekt pro landscape orientaci */
    @media (orientation: landscape) {
        .hero__content {
            background: rgba(0, 0, 0, 0.2) !important;
            padding: 1.5rem !important;
            border-radius: 25px !important;
            backdrop-filter: blur(10px) !important;
            margin-top: 1rem;
        }
    }

    .hero__content h1 {
        font-size: 2.2rem;
        /* Sníženo z 2.6rem */
        padding: 0.5rem 1rem 0;
        line-height: 1.3;
        letter-spacing: 0.02em;
        align-items: center;
        /* Zachování zarovnání na střed pro mobil */
    }

    @media (max-width: 400px) {
        .hero__content h1 {
            font-size: 1.93rem;
            /* Ještě menší pro nejmenší mobily */
        }

        .hero__list li {
            font-size: 0.9rem !important;
            /* Zmenšení odrážek pro malé mobily */
        }
    }

    /* Tři věty s kytičkami - zarovnání vlevo ale blok na střed */
    .hero__list {
        margin: 1.5rem auto !important;
        display: inline-block !important;
        /* Aby byl blok jen tak široký jak text */
        text-align: left;
        /* Text uvnitř vlevo */
        max-width: 90%;
    }

    .hero__list li {
        font-size: 1rem !important;
        /* Zmenšeno z 1.4rem */
        margin-bottom: 0.4rem !important;
        /* Menší řádkování */
    }

    /* Odstavec pod kytičkami - skrytý na mobilu */
    .hero__content>p {
        display: none !important;
    }

    .hero__image-container {
        margin-top: 2rem;
        justify-content: center;
        width: 100%;
        position: relative;
    }

    .hero__dogs {
        display: none !important;
    }

    .hero__logo-badge {
        width: 90px;
        height: 90px;
        top: 30px;
        right: 15%;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Levitující ikony - zmenšené */
    .hero__icon {
        width: 50px;
        height: 50px;
    }

    .hero__icon--1 {
        top: 55%;
        left: 2%;
    }

    .hero__icon--2 {
        top: 70%;
        left: 10%;
    }

    .hero__icon--3 {
        top: 78%;
        left: 40%;
    }

    .hero__icon--4 {
        top: 65%;
        right: 2%;
    }

    /* Typography - čitelné a výrazné */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem !important;
    }

    h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem !important;
    }

    p,
    li {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }

    /* Citát v patičce - ponechat o něco větší */
    .footer__philosophy p {
        font-size: 1.1rem !important;
    }

    /* Kontaktní údaje a formulář - sjednocení na menší velikost */
    .contact-form input,
    .contact-form textarea,
    .footer__contact-info p,
    .footer__contact-link,
    .footer__address,
    .footer__nav-list a,
    ul[style*="list-style: none"] span[style*="font-size"],
    ul[style*="list-style: none"] a[style*="font-size"] {
        font-size: 1.05rem !important;
    }

    /* Grid */
    .grid-hravy {
        gap: 1.5rem !important;
        /* Zvětšeno z 1rem na 1.5rem */
    }

    .grid-hravy>* {
        grid-column: span 12 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .vet-grid-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .grid-item {
        padding: 1.5rem !important;
        transform: none !important;
    }

    /* Oprava velkého gapu u flex kontejnerů na mobilu */
    .grid-item[style*="gap: 4rem"] {
        gap: 2rem !important;
    }

    /* Zrušení pravého okraje u boxu 'Nejčastěji spolu řešíme' na mobilu */
    #box-resime {
        margin-right: 0 !important;
    }

    /* Obrázky */
    .img-hravy {
        height: 250px !important;
        margin-bottom: 1.5rem !important;
    }

    .overlap-container {
        padding: 0 !important;
        position: relative;
    }

    .overlap-container>div[style*="position: absolute"]:not(.vet-badge) {
        position: relative !important;
        transform: none !important;
        left: 0 !important;
        bottom: 0 !important;
        margin-top: 1rem;
        max-width: 100% !important;
    }

    /* Povolení přetečení pro vyčnívající prvky a přidání prostoru pro řádek */
    #veterina .container {
        overflow: visible !important;
        padding-top: 2rem !important;
    }

    #veterina {
        padding: 4rem 0 !important;
    }

    .vet-badge {
        width: 80px !important;
        height: 80px !important;
        top: 0 !important;
        left: 0 !important;
        transform: translate(-15px, -15px) !important;
    }

    .vet-badge i {
        font-size: 2rem !important;
    }

    /* Approach sekce */
    .approach-visual {
        height: auto;
        margin-bottom: 2rem;
    }

    .approach-circle {
        width: 200px;
        height: 200px;
    }

    .approach-img {
        width: 100% !important;
        max-width: 280px !important;
    }

    /* Resetování pozic pro mobil */
    .approach-visual--stene {
        margin-left: 0;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 3rem;
    }

    .approach-visual--psi {
        display: flex;
        justify-content: center;
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

    .approach-circle--stene {
        right: auto;
        top: -5px;
        left: 50%;
        transform: translateX(-50%) scale(1);
    }

    .approach-circle--psi {
        top: -30px;
        left: 50%;
        transform: translateX(-50%) scale(1);
    }

    .approach-img--large {
        transform: none !important;
    }

    /* Reset paddingu na citátových boxech v sekcích Můj přístup */
    #muj-pristup .grid-item--white,
    #muj-pristup-2 .grid-item--white {
        padding: 1.5rem !important;
    }

    /* Sekce Můj přístup - odstranit padding dole */
    #muj-pristup {
        padding-bottom: 0 !important;
    }

    /* Sekce Můj přístup 2 - větší padding nahoře kvůli zaoblenému okraji */
    #muj-pristup-2 {
        padding-top: 60px !important;
    }

    /* Větší mezera mezi sloupci v sekci Jiná perspektiva */
    #muj-pristup-2 .grid-hravy--reverse-mobile {
        gap: 5rem !important;
    }

    /* Sekce trenérů - oprava useknutého stínu */
    #treneri .grid-hravy {
        overflow: visible !important;
        padding-bottom: 20px;
    }

    #treneri .grid-item--white {
        margin-bottom: 10px;
    }

    /* Reference - tlačítko s větším marginem */
    #reference .text-center {
        margin-top: 16px !important;
    }

    /* Veterinární sekce */
    .section--dark {
        padding: 4rem 0 !important;
    }

    /* Sekce na mobilu - pouze padding, žádný margin */
    .section {
        padding: 2.5rem 0 !important;
        margin: 0 !important;
    }

    .section--mint {
        margin: 0 !important;
        padding: 3rem 1rem !important;
        border-radius: 40px 0 40px 0 !important;
    }

    .section--dark {
        padding: 3rem 1rem !important;
        border-radius: 0 40px 0 40px !important;
    }

    /* Hero sekce na podstránkách - dostatek místa pro header */
    .section--hero-subpage {
        padding: 120px 1rem 2.5rem !important;
    }

    /* Text-center margin na mobilu */
    .text-center[style*="margin-bottom: 4rem"] {
        margin-bottom: 1.5rem !important;
    }

    /* Grid gap na mobilu */
    .grid-hravy[style*="gap: 4rem"],
    .grid-hravy[style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }

    .vet-gallery {
        width: 100%;
        aspect-ratio: 4/3;
    }

    .img-sub {
        display: none;
    }

    /* Tlačítka */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Logo v mobilním menu - levý horní roh */
    .nav__logo-mobile {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        z-index: 2;
    }

    .nav__logo-mobile img {
        height: 50px;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    }

    /* Navigace - tmavě zelená s bublinami */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--clr-bg-dark);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        overflow: hidden;
    }

    /* Dekorativní bubliny v menu */
    .nav::before {
        content: '';
        position: absolute;
        width: 280px;
        height: 280px;
        background: var(--clr-primary);
        border-radius: 50%;
        top: -80px;
        right: -80px;
        opacity: 0.15;
        z-index: 0;
    }

    .nav::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: var(--clr-mint);
        border-radius: 50%;
        bottom: -50px;
        left: -50px;
        opacity: 0.2;
        z-index: 0;
    }

    .nav--active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.4rem;
        text-align: center;
        padding: 2rem;
        position: relative;
        z-index: 1;
    }

    .nav__link {
        font-size: 1.4rem;
        color: white !important;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none;
    }

    /* Žluté podtržení při hoveru */
    .nav__link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--clr-primary);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .nav__link:hover {
        color: var(--clr-primary) !important;
    }

    .nav__link:hover::after {
        width: 100%;
    }

    /* Ikony WhatsApp a Facebook v menu - sytější barva */
    .nav__link--icon {
        display: flex !important;
        /* Zobrazit na mobilu */
        background: var(--clr-pastel) !important;
        color: var(--clr-text-dark) !important;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: none !important;
    }

    .nav__link--icon:hover {
        background: var(--clr-primary) !important;
        color: var(--clr-text-dark) !important;
        transform: translateY(-3px);
    }

    /* Bílé logo kolečko zůstane bílé při hoveru */
    .nav__link--icon-white:hover {
        background: white !important;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hamburger čárky - bílé */
    .nav-toggle span {
        background: white;
    }

    /* Když je menu otevřené, čárky zůstanou bílé */
    .nav-toggle.active span {
        background: white !important;
    }

    /* Tlačítko rezervace v menu */
    .nav .btn--nav {
        background: var(--clr-primary);
        color: var(--clr-text-dark);
        box-shadow: 0 10px 25px rgba(246, 178, 26, 0.3);
        margin-top: 0.5rem;
    }

    /* Nadpisy na mobilu - sjednocení a zmenšení */
    h3 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    h4 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    /* Specifické zmenšení pro dlouhé nadpisy v rezervačních kartách */
    .grid-item h3 {
        font-size: 1.6rem !important;
    }

    .nav .btn--nav:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(246, 178, 26, 0.4);
    }

    /* Label - změna na "podnadpis" (bez rámečku) */
    .label {
        font-size: 0.9rem;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--clr-primary);
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0.1em;
        margin: 8px 0;
        display: inline-block;
        border-radius: 0;
    }

    /* Sekce Nejčastěji řešíme - grid na 1 sloupec */
    .grid-item--yellow div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .grid-item--yellow ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Areál ZKO - karty pod sebe */
    .grid-item--white div[style*="display: flex"][style*="gap: 1.5rem"] {
        flex-direction: column;
    }

    /* Areál ZKO - karty na bílou barvu na mobilu */
    .section--mint .grid-item--white div[style*="background: var(--clr-mint)"] {
        background: white !important;
        border: 2px solid var(--clr-mint);
    }

    /* Vet sekce - ikona srdíčka v rohu fotky */
    .section--dark .overlap-container {
        position: relative;
    }

    .section--dark .overlap-container>div[style*="border-radius: 50%"] {
        position: absolute !important;
        top: -15px !important;
        /* Posunuto níž (z -25px) */
        left: 0px !important;
        /* Posunuto doprava (z -15px) */
        transform: none !important;
        width: 70px !important;
        height: 70px !important;
        z-index: 10 !important;
    }

    .section--dark .overlap-container>div[style*="border-radius: 50%"] i {
        font-size: 1.8rem !important;
    }

    /* Veterinární sekce - karty pod sebe */
    div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 2rem"] {
        grid-template-columns: 1fr !important;
    }

    /* Vet galerie - na výšku */
    .vet-gallery {
        aspect-ratio: 3/4 !important;
    }

    /* Malá fotka ve vet sekci - zobrazit */
    .img-sub {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        margin-top: 1rem;
        right: auto !important;
        bottom: auto !important;
    }

    /* Footer - zarovnání na střed pro lepší rovnováhu na mobilu */
    .footer__grid {
        text-align: center;
    }

    .footer__col {
        text-align: center;
    }

    .footer__logo img {
        height: 90px;
        margin: 0 auto 1.5rem;
    }

    .footer__contact-link {
        justify-content: center;
    }

    .social-links {
        justify-content: center !important;
    }

    .footer__bottom {
        text-align: center !important;
    }

    .footer__bottom>div:first-child {
        align-items: center;
        justify-content: center;
    }

    /* Kontaktní poznámka 24 hodin - na mobilu/tabletu pod formulářem */
    .contact-note--desktop {
        display: none !important;
    }

    .contact-note--mobile {
        display: block !important;
    }
}

/* Kontaktní poznámka 24 hodin - na desktopu v původním místě */
.contact-note--mobile {
    display: none;
}

.contact-note--desktop {
    display: block;
}

/* Footer Modern Layout */
.footer {
    background: var(--clr-text-dark);
    color: white;
    padding: 5rem 0 3rem;
    border-radius: 80px 80px 0 0;
    position: relative;
    z-index: 10;
    margin-top: 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer__col--branding {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

.footer__philosophy {
    margin: 2rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--clr-primary);
}

.footer__philosophy p {
    font-size: 1.3rem;
    /* Zvětšeno z 1.15rem */
    line-height: 1.7;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

.footer__motto {
    font-weight: 700;
    color: var(--clr-primary);
    font-style: normal !important;
}

.footer__title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}



.footer__nav-list {
    list-style: none;
    padding: 0;
}

.footer__nav-list li {
    margin-bottom: 1rem;
}

.footer__nav-list a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
    font-size: 1.05rem;
}

.footer__nav-list a:hover {
    opacity: 1;
    color: var(--clr-primary);
    padding-left: 5px;
}

.footer__logo img {
    height: 110px;
    /* Zvětšeno ze 70px */
    margin-bottom: 1rem;
}

.footer__contact-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer__icon-box {
    width: 42px;
    height: 42px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: none;
}

.footer__contact-link:hover .footer__icon-box {
    transform: scale(1.1) rotate(5deg);
    background: white;
}

.footer__contact-link:hover {
    color: var(--clr-primary);
}

.footer__address {
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.1rem;
}

.footer__cta {
    margin-top: 1rem;
    width: 100%;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 1rem;
    font-size: 1.4rem;
}

.social-links a:hover {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .footer {
        border-radius: 60px 60px 0 0;
        padding: 4rem 0 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .footer__col--branding {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 3rem;
    }

    .footer__philosophy {
        padding-left: 0;
        border-left: none;
    }



    .footer__contact-link {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
        margin-top: 1.5rem;
    }

    /* --- PŘEBITÍ INLINE STYLŮ PRO MOBIL (OPTIMALIZACE MEZER) --- */

    /* Velké marginy u nadpisů a kontejnerů srovnáme na 2rem */
    div[style*="margin-bottom: 5rem"],
    div[style*="margin-bottom: 4rem"],
    div[style*="margin-top: 6rem"],
    div[style*="margin-top: 8rem"],
    div[style*="margin-top: 4rem"] {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
        padding-bottom: 0 !important;
    }

    /* Veterina sekce padding - byla 8rem (dříve 10rem) */
    section[style*="padding: 8rem 0"] {
        padding: 4rem 0 !important;
    }

    /* Sloupce s paddingem vlevo -> na mobilu zrušit padding a přidat margin nahoře */
    div[style*="padding-left: 3rem"],
    div[style*="padding-left: 2rem"],
    div[style*="padding-right: 2rem"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 1rem !important;
        /* Zmenšeno z 2rem na 1rem (16px) */
    }

    /* Inline styly u Labelů */
    .label[style*="margin-bottom: 3rem"] {
        margin-bottom: 0.5rem !important;
    }

    .label[style*="background"] {
        background: transparent !important;
        /* Zrušení žlutého pozadí u labelu */
    }

    /* Specific fix for Vet text */
    .section--dark h2[style*="margin-bottom: 2rem"] {
        margin-bottom: 1rem !important;
    }

    /* Fix pro font ve Veterině - sjednocení */
    .section--dark p,
    .section--dark ul,
    .section--dark li {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }

    /* Služby - ubrat nahoře 8px */
    .section--mint .text-center {
        margin-top: -0.5rem !important;
    }

    /* Odstranění paddingu nad Rezervujte si termín (cca 40px) */
    #kontakt {
        padding-top: 0 !important;
    }

    /* Utilitky pro pořadí na mobilu */
    .grid-hravy--reverse-mobile {
        display: flex !important;
        flex-direction: column !important;
    }

    .col--order-2-mobile {
        order: 2 !important;
    }
}

/* --- TABLET / DESKTOP FIXES (min-width: 992px) --- */
@media (min-width: 1101px) {
    .hero__content {
        max-width: 800px;
        margin-top: 60px;
        /* Sjednocený černý glass efekt */
        background: rgba(0, 0, 0, 0.2);
        padding: 2.5rem;
        border-radius: 35px;
        backdrop-filter: blur(10px);
    }

    .hero__content h1,
    .hero__list {
        max-width: 650px;
        /* Zvětšeno pro větší písmo */
    }

    .hero__content h1 {
        align-items: flex-start;
        text-align: left;
        font-size: 4.2rem;
        text-shadow: none !important;
    }

    .hero__main-title,
    .hero__location-title {
        text-shadow: none !important;
    }

    .hero__list {
        text-align: left;
        margin-left: 0 !important;
    }

    .hero__actions {
        display: flex;
        gap: 2rem;
        /* Větší rozestup tlačítek */
        flex-direction: row;
        /* Vedle sebe */
        justify-content: flex-start;
        flex-wrap: nowrap;
        /* Tlačítka se nezalomí */
        width: 100%;
        /* Plná šířka kontejneru 800px */
    }

    .text-yellow {
        text-shadow: none !important;
    }
}

/* --- KONTAKTNÍ FORMULÁŘ --- */
.contact-form input,
.contact-form textarea {
    font-family: 'Outfit', sans-serif !important;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--clr-primary) !important;
    background-color: var(--clr-light-gray);
    box-shadow: 0 0 0 4px rgba(246, 178, 26, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    opacity: 0.6;
    font-family: 'Outfit', sans-serif !important;
}

/* --- LARGE SCREEN FIXES (min-width: 1100px) --- */
@media (min-width: 1100px) {

    /* Na monitorech nad 1100px už text do psů nezasahuje -> zrušíme Glass pozadí i stíny */
    .hero__content {
        background: transparent !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        margin-top: 80px !important;
    }

    .hero__content h1,
    .text-yellow {
        text-shadow: none !important;
    }
}