.custom-alert {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    max-width: 400px;
    animation: fadeInSlide 0.4s ease-out, fadeOut 0.4s ease-in 4s forwards;
}

.alert-icon {
    font-size: 22px;
}

.custom-alert.success {
    background: linear-gradient(135deg, #00c851, #007e33);
}

.custom-alert.error {
    background: linear-gradient(135deg, #ff4444, #cc0000);
}

.custom-alert.warning {
    background: linear-gradient(135deg, #ffbb33, #ff8800);
}

.custom-alert.info {
    background: linear-gradient(135deg, #33b5e5, #0099cc);
}

/* Animace */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/*indivudalni styly*/

#hero-section {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
}

/* BANNER DESIGN */
.hero-main {
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4)),
    url('/www/assets/im/design/hlavni_banner.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 250px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2c3136;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span { color: #98c8d4; }

.hero-subtitle {
    color: #777;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 20px; }

.btn-hero-dark {
    background: #2c3136;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-hero-light {
    background: #98c8d4;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-hero-dark:hover, .btn-hero-light:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* KARTY / DLAŽDICE */
.hero-cards {
    margin-top: -180px;
    position: relative;
    z-index: 10;
    padding-bottom: 100px;
}

.info-card {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-10px); }

/* Fix na čtvercové obrázky */
.card-img-wrapper {
    width: 100%;
    padding: 20px 20px 0 20px;
}

.card-img-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Vynutí čtverec */
    object-fit: cover; /* Ořízne obrázek bez deformace */
    border-radius: 20px;
    display: block;
}

.card-body {
    padding: 30px;
    flex-grow: 1; /* Zajistí, že body vyplní zbytek karty pro stejnou výšku */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-body h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3136;
}

.card-body p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Barevné varianty */
.card-blue { background-color: #98c8d4; }
.card-blue h3, .card-blue p { color: #1a333b; }
.card-white { background-color: #f8f9fa; }

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-main { padding: 100px 0 200px 0; }
    .hero-cards { margin-top: -120px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; text-align: center; }
    .hero-subtitle { text-align: center; margin: 0 auto 30px auto; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; }
    .hero-main { padding: 60px 0 100px 0; }
    .hero-cards { margin-top: -60px; padding-bottom: 60px; }

    .card-img-wrapper img {
        max-width: 280px;
        margin: 0 auto;
    }
}

#main-header {
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* TOP BAR */
.top-bar {
    background-color: #98c8d4;
    padding: 8px 0;
    color: #1a333b;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar a { color: #1a333b; text-decoration: none; }
.top-bar i { margin-right: 5px; }

/* DESKTOP NAVBAR */
.site-logo { height: 100px; width: auto; }

.nav-link {
    font-weight: 700;
    color: #333 !important;
    font-size: 0.9rem;
    padding: 10px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active { color: #98c8d4 !important; }

.btn-header-booking {
    display: inline-block;
    background-color: #92c3d0;
    color: white !important;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: none;
}

.btn-header-booking:hover {
    background-color: #1a333b;
    transform: translateY(-2px);
}

/* MOBILE OVERLAY (Vychází z tvého kódu) */
.mobile-overlay {
    display: none; /* Skryté defaultně */
}

@media (max-width: 991px) {
    .mobile-overlay {
        display: flex;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: #98c8d4;
        background-image: url('/www/assets/im/design/pozadi.png');
        background-size: cover;
        background-position: center;
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .close-menu {
        position: absolute;
        top: 20px; right: 30px;
        background: none; border: none;
        font-size: 3.5rem; color: #1a333b;
        cursor: pointer;
    }

    .mobile-nav-links { list-style: none; padding: 0; text-align: center; }

    .mobile-nav-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .mobile-overlay.active .mobile-nav-links li { opacity: 1; transform: translateY(0); }

    /* Stagger efekt pro položky menu */
    .mobile-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .mobile-overlay.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.6s; }

    .mobile-nav-links a {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1a333b;
        text-decoration: none;
    }

    .mobile-nav-links .btn-header-booking {
        background-color: #1a333b;
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

/* Styl pro dropdown menu */
.dropdown-menu {
    border-radius: 15px;
    padding: 10px;
    margin-top: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Zobrazení při hoveru na desktopu */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-weight: 500;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8fbfc;
    color: #92c3d0;
    padding-left: 20px; /* Jemný posun doprava při hoveru */
}

/* Odstranění šipky u dropdownu (pokud ji nechceš) */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.25em;
    transition: transform 0.3s;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

#care-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
}

.care-title {
    font-weight: 700;
    font-size: 2.8rem;
    color: #2c3136;
    line-height: 1.1;
    margin-bottom: 30px;
}

.care-title span { color: #98c8d4; }

.care-description {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Příprava pro jQuery animaci */
.feature-item.reveal {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.feature-item.reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item { margin-bottom: 25px; }

.feature-number {
    width: 45px; height: 45px;
    background-color: #98c8d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
}

.feature-text { font-weight: 700; font-size: 1.15rem; color: #2c3136; }

.btn-care-booking {
    display: inline-block;
    background-color: #2c3136;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* STŘEDĚNÍ OBRÁZKŮ - OPRAVA */
.care-images-wrapper {
    position: relative;
    display: flex;
    align-items: center; /* Vertikální středění */
    justify-content: center; /* Horizontální středění */
    padding: 60px; /* Prostor aby pozadí nevykukovalo z layoutu */
}

.care-bg-pattern {
    position: absolute;
    width: 100%;
    max-width: 550px; /* Velikost modrého pozadí */
    height: auto;
    z-index: 1;
    border-radius: 40px;
}

.care-main-photo {
    position: relative;
    z-index: 2;
    width: 85%; /* Fotka bude o něco menší než pozadí, aby to vytvořilo ten rám */
    max-width: 480px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .care-images-wrapper { padding: 20px; }
    .care-title { font-size: 2.2rem; }
}

#reviews-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
}

/* LEVÁ STRANA */
.reviews-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.reviews-title span {
    color: #98c8d4;
}

.reviews-intro-text {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-all-reviews {
    display: inline-block;
    background-color: #2c3136;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-all-reviews:hover {
    background-color: #98c8d4;
    color: white;
    transform: translateY(-2px);
}

.google-logo {
    height: 40px;
    width: auto;
}

/* PRAVÁ STRANA - KARTY */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    border-radius: 35px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

/* Definice barev pozadí pro jednotlivé recenze */
.rc-yellow { background-color: #fffcf2; }
.rc-blue   { background-color: #f4fafd; }
.rc-green  { background-color: #f8fdf5; }
.rc-pink   { background-color: #fef8f8; }

.review-card:hover {
    transform: scale(1.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
    color: #333;
}

.user-handle {
    color: #aaa;
    font-size: 0.85rem;
}

.stars {
    color: #f1b44c;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .reviews-title {
        font-size: 2rem;
    }
    .review-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .stars {
        align-self: flex-start;
    }
}

#team-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
}

/* Nadpis sekce */
#team-section .team-main-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #333333;
    margin-bottom: 40px;
}

#team-section .team-main-title span {
    color: #98c8d4; /* Světle modrá z brandu */
}

/* Obal pro obrázek s kulatými rohy */
.team-img-wrapper {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 30px; /* Výrazné zakulacení podle screenu */
    aspect-ratio: 1 / 1.1; /* Aby měly všechny fotky stejný poměr stran */
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Vyplní prostor bez deformace */
    transition: transform 0.5s ease;
}

/* Jemný hover efekt na fotku */
.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

/* Jméno člena */
.member-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 5px;
}

/* Role / Pozice */
.member-role {
    font-weight: 400;
    font-size: 0.95rem;
    color: #999999; /* Šedý text podle předlohy */
    margin-bottom: 0;
}

/* Responzivita */
@media (max-width: 768px) {
    #team-section .team-main-title {
        font-size: 1.8rem;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .member-role {
        font-size: 0.85rem;
    }

    .team-img-wrapper {
        border-radius: 20px; /* Trochu menší radius na mobilech */
    }
}

#partners-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
}

/* Nadpis s barevným akcentem */
#partners-section .partners-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a333b;
}

#partners-section .partners-title span {
    color: #98c8d4; /* Ta světle modrá z patičky */
}

/* Odkaz a kontejner pro logo */
.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Fixní výška pro zarovnání */
    padding: 15px;
    filter: grayscale(100%); /* Volitelné: loga budou šedá a barevná až na hover */
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

/* Hover efekt na loga */
.partner-link:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Stylování samotných obrázků (log) */
.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Zajišťuje, že se logo nedeformuje a vejde se */
    display: block;
}

/* Responzivní doladění */
@media (max-width: 768px) {
    #partners-section {
        padding: 50px 0;
    }

    #partners-section .partners-title {
        font-size: 1.8rem;
    }

    .partner-link {
        height: 80px; /* Menší výška na mobilech */
        opacity: 1; /* Na mobilech raději nechat loga barevná/viditelná */
        filter: none;
    }
}

/* Import Ubuntu fontu (pokud ho nemáš v headu) */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

#main-footer {
    background-color: #98c8d4;
    padding-top: 0;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif; /* Aplikace fontu Ubuntu */
    position: relative;
    margin-top: 100px;
}

/* Plovoucí CTA Box */
#footer-cta-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 60px 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    margin-top: -85px;
    margin-bottom: 80px;
}

#footer-cta-box .cta-title {
    color: #1a333b;
    font-weight: 700;
    font-size: 1.85rem;
    max-width: 550px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Tlačítko s "pěkným" hoverem */
#footer-cta-box .btn-cta-booking {
    background-color: #92c3d0;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(146, 195, 208, 0.3);
    white-space: nowrap;
}

#footer-cta-box .btn-cta-booking:hover {
    background-color: #1a333b;
    color: #ffffff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(26, 51, 59, 0.25);
}

/* Obsah footeru */
.footer-content {
    color: #4a4a4a;
}

.footer-heading {
    color: #1a333b;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-desc {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #333;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a333b;
    padding-left: 3px; /* Jemný posun při hoveru pro dynamiku */
}

/* Sociální sítě - FontAwesome styl */
.footer-socials a {
    color: #000;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#subpage-hero-clean {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

/* OBRÁZEK (65 % šířky, vpravo) */
.hero-image-block {
    position: absolute;
    right: 0;
    width: 65%; /* Podle tvého požadavku */
    height: 100%;
    z-index: 1;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; /* Výrazně zakulacené rohy podle screenu */
    display: block;
}

/* TEXTOVÝ BLOK (Vlevo, přetéká do obrázku) */
.hero-text-block {
    position: relative;
    z-index: 2; /* Musí být nad obrázkem */
    width: 50%; /* Šířka textové části, aby zasahovala do 65% obrázku */
    background: transparent;
    padding-right: 20px;
}

.sub-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #2c3136;
    line-height: 1;
    margin-bottom: 30px;
}

.sub-title span {
    color: #92c3d0;
}

.sub-text {
    color: #777;
    font-size: 1.1rem;
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 45px;
}

/* Tlačítka */
.sub-btns {
    display: flex;
    gap: 20px;
}

.btn-dark {
    background-color: #2c3136;
    color: #fff !important;
    padding: 20px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-light {
    background-color: #92c3d0;
    color: #fff !important;
    padding: 20px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

/* RESPONZIVITA */
@media (max-width: 1200px) {
    .sub-title { font-size: 3.5rem; }
    .hero-image-block { width: 60%; }
}

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-image-block {
        position: relative;
        width: 100%;
        height: 350px;
        margin-bottom: 40px;
        order: 1;
    }
    .hero-text-block {
        width: 100%;
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    .sub-text { margin: 0 auto 30px auto; }
    .sub-btns { justify-content: center; }
}

@media (max-width: 767px) {
    .sub-title { font-size: 2.8rem; }
    .sub-btns { flex-direction: column; align-items: center; }
    .hero-image-block { height: 250px; }
}

#cta-banner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.booking-banner-box {
    background-color: #2c3136; /* Tmavý základ */
    background-image: url('/www/assets/im/design/bg_banner.jpg'); /* Cesta k tvému obrázku s vlnkami */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 40px; /* Výrazně zaoblené rohy podle screenu */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.banner-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    font-weight: 400;
}

/* Tlačítko uprostřed banneru */
.btn-banner-action {
    display: inline-block;
    background-color: #92c3d0; /* Tvá světle modrá */
    color: #ffffff !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-banner-action:hover {
    background-color: #7ab3c1;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responzivita pro menší obrazovky */
@media (max-width: 768px) {
    .booking-banner-box {
        padding: 60px 15px;
        border-radius: 30px;
    }
    .banner-title {
        font-size: 1.8rem;
    }
    .banner-subtitle {
        font-size: 1rem;
    }
    .btn-banner-action {
        padding: 14px 35px;
        font-size: 1rem;
    }
}