/* --- ZÁKLADNÍ NASTAVENÍ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* --- NAVIGACE --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    border-bottom: 1px solid #f2f2f2;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-socials a {
    color: #333;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: 0.3s;
}

/* Růžovo-fialová při najetí */
.nav-socials a:hover { color: #d4a5b9; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin: 0 15px; }

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.nav-links a:hover { color: #d4a5b9; }

.shop-link {
    text-decoration: none;
    color: #fff;
    background: #333; /* Černé tlačítko pro luxusní kontrast */
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.shop-link:hover { background: #d4a5b9; }

/* --- HERO SEKCE --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: url('img/hero.png') no-repeat right center;
    background-size: contain; 
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
}

.main-logo {
    max-width: 350px;
    margin-bottom: 10px;
}

.script-text {
    font-family: 'Petit Formal Script', cursive;
    color: #d4a5b9; /* Růžovo-fialová barva */
    font-size: 1.6rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero h1 span {
    font-weight: 400;
    font-style: italic;
    color: #d4a5b9; /* Zvýraznění části názvu */
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Tlačítka v Hero */
.hero-cta .btn-primary {
    display: inline-block;
    text-decoration: none;
    background: #d4a5b9; /* Hlavní barva */
    color: white;
    padding: 15px 35px;
    margin-right: 15px;
    transition: 0.3s;
    font-weight: 500;
}

.hero-cta .btn-secondary {
    display: inline-block;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #d4a5b9; /* Linka v barvě brandu */
    padding: 5px 0;
    transition: 0.3s;
}

.hero-cta a:hover {
    opacity: 0.8;
}
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    
    background: #2b2b2b;
    color: #ffffff;
    
    border: none;
    border-radius: 0; /* <- hranaté */
    
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    cursor: pointer;
    transition: all 0.25s ease;
}

/* hover efekt */
.btn-primary:hover {
    background: #000000;
}

/* active click */
.btn-primary:active {
    transform: translateY(1px);
}
/* --- SEKCE O NÁS --- */
.about-section {
    padding: 120px 5%;
    background-color: #ffffff;
}

.about-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-col {
    flex: 1;
}

/* Levá strana s citátem */
.about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 40px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.arrow {
    font-size: 1.5rem;
    color: #d4a5b9; /* Růžovo-fialová šipka */
}

.small-caps {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #888;
}

/* Prostředek - Obrázek */
.about-center {
    display: flex;
    justify-content: center;
}

.image-frame {
    padding: 15px;
    border: 1px solid #f2f2f2;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Jemný stín pro luxusní efekt */
}

.image-frame img {
    max-width: 100%;
    display: block;
    filter: grayscale(10%); /* Jemný retro nádech, k růžové to sedí */
}

/* Pravá strana - Text */
.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px solid #d4a5b9;
    padding-bottom: 5px;
    color: #d4a5b9;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text strong {
    color: #d4a5b9;
}

/* RESPONZIVITA */
@media (max-width: 992px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; } /* Tady by to chtělo pak dodělat mobilní menu */
    
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-left h2 { font-size: 2.2rem; }
    .scroll-indicator { align-items: center; }
    
    .hero {
        background-position: center bottom;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content { margin: 0 auto; }
}
/* --- SEKCE VRHY --- */
.litters-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden; /* Aby čáry neutíkaly, kde nemají */
}

/* Styl pro nadpis s linkami */
.line-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 60px;
}

.line-heading .line {
    flex-grow: 1;
    height: 1px;
    background-color: #f2f2f2; /* Jemná šedá linka */
}

.line-heading h2 {
    padding: 0 40px;
    font-size: 2.5rem;
    color: #333;
    white-space: nowrap;
}

/* Kontejner pro karty */
.litters-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.litter-card {
    flex: 1;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.litter-image {
    position: relative;
    aspect-ratio: 3 / 4; /* Karty na výšku */
    background-color: #f9f9f9;
}

.litter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Overlay efekt (ten bílý obdélník uprostřed fotky) */
.litter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.litter-info {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px 40px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.4s;
    width: 80%;
}

.litter-info h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.litter-info .small-caps {
    color: #d4a5b9; /* Tvoje nová růžovo-fialová barva */
    font-size: 0.7rem;
}

/* Hover efekty */
.litter-card:hover img {
    transform: scale(1.05);
}

.litter-card:hover .litter-info {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Mobilní verze */
@media (max-width: 768px) {
    .litters-container {
        flex-direction: column;
    }
    .line-heading h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
}
/* --- HYPE BANNER (PLÁNOVANÝ VRH) --- */
.hype-banner {
    position: relative;
    width: 100%;
    height: 90vh; /* Banner skoro přes celou výšku obrazovky */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Zde vložíš svůj PNG obrázek do pozadí */
    background: url('img/banner.jpg') no-repeat center;
    background-size: cover; 
    
    /* Jemný overlay pro čitelnost textu, pokud je fotka tmavá */
    background-color: rgba(255, 255, 255, 0.1);
    
    color: #fff; /* Základní barva textu, aby vynikl na tmavém */
    text-align: center;
    overflow: hidden;
}

.hype-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 1;
}

.hype-content {
    position: relative;
    z-index: 2;
}
/* SUBTITLE */
.hype-content .small-caps.subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;

    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* SCRIPT TITLE */
.hype-content .script-text.title {
    color: #d4a5b9;
    font-size: 2.4rem;
    margin-bottom: 8px;

    text-shadow: 
        0 0 10px rgba(212,165,185,0.4),
        0 2px 10px rgba(0,0,0,0.6);
}

/* MAIN HEADING */
.hype-content .main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #fff;

    text-shadow: 
        0 4px 25px rgba(0,0,0,0.85),
        0 0 10px rgba(255,255,255,0.15);
}

/* INFO TEXT */
.hype-content .info-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;

    text-shadow: 0 2px 15px rgba(0,0,0,0.7);
}
/* Odkaz s linkou */
.cta-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #d4a5b9; /* Růžovo-fialová linka a text */
    transition: 0.3s;
}

.cta-link span:first-child {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cta-link .line {
    display: block;
    width: 60px;
    height: 1px;
    background-color: #d4a5b9;
    transition: 0.3s;
}

.cta-link:hover {
    color: #fff;
}

.cta-link:hover .line {
    width: 100px;
}

/* Mobilní verze */
@media (max-width: 768px) {
    .hype-banner { height: 70vh; }
    .hype-content .script-text.title { font-size: 1.8rem; }
    .hype-content .main-heading { font-size: 2rem; }
    .hype-content .info-text { font-size: 1rem; }
}
/* --- SEKCE ODCHOVANCI --- */
.alumni-section {
    padding: 100px 0;
    background-color: #fcfafb; /* Velmi jemný nádech do růžova pro oddělení sekcí */
}

.alumni-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.alumni-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.8s ease;
}

.alumni-slide.active { display: flex; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fotky v carouselu */
.alumni-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.alumni-photos img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.tilt-left { transform: rotate(-5deg) translateY(10px); }
.tilt-right { transform: rotate(5deg) translateY(10px); }
.center { z-index: 2; transform: scale(1.05); }

/* --- BOX S REFERENCÍ (Vylepšená čitelnost) --- */
.testimonial-box {
    background: #fff;
    padding: 50px 60px; /* Trošku víc místa uvnitř */
    max-width: 750px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 15px 40px rgba(212, 165, 185, 0.1); /* Jemný růžový stín */
    margin: 0 auto;
}

.testimonial-text {
    /* Přechod na Inter pro maximální čitelnost */
    font-family: 'Inter', sans-serif; 
    font-size: 1.15rem;
    font-weight: 300; /* Lehčí váha písmu dodá eleganci */
    line-height: 1.8; /* Větší mezery mezi řádky */
    color: #444;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
}

/* Uvozovky jako dekorace, aby to nevypadalo nudně */
.testimonial-text::before {
    content: '"';
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #d4a5b9;
    height: 40px;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-author {
    color: #d4a5b9;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px; /* Více roztažené pro luxusní vzhled */
    font-weight: 700;
}

/* Responzivita pro menší displeje */
@media (max-width: 768px) {
    .testimonial-box {
        padding: 30px 20px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Tlačítka */
.nav-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #d4a5b9;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
    z-index: 10;
}

.nav-btn:hover { color: #333; transform: scale(1.2); }

@media (max-width: 768px) {
    .alumni-photos img { width: 150px; height: 200px; }
    .alumni-photos { gap: 5px; }
}
/* --- SEKCE AKTUALITY --- */
.news-section {
    padding: 100px 5%;
    background-color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sloupce vedle sebe */
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 0; /* odstraněné zaoblení */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 165, 185, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0; /* jistota že i obrázek je rovný */
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 0.7rem;
    color: #d4a5b9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #333;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #d4a5b9;
    padding-bottom: 2px;
    transition: 0.3s;
}

.read-more:hover {
    color: #d4a5b9;
    border-bottom-color: #333;
}

/* Responsivita */
@media (max-width: 1100px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
}
/* --- FINÁLNÍ FOOTER --- */
.main-footer {
    background-color: #fcfafb; /* Stejný jemný nádech jako u odchovanců */
    padding: 80px 5% 40px;
    border-top: 1px solid #f2f2f2;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Tři sloupce */
    gap: 50px;
    align-items: center;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

/* Seznam s packami */
.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.benefit-list i {
    color: #d4a5b9; /* Tvoje růžovo-fialová */
    margin-right: 15px;
    font-size: 0.8rem;
}

/* Prostřední logo */
.footer-logo {
    text-align: center;
}

.footer-img {
    max-width: 350px;
    margin-bottom: 15px;
}

.footer-logo .script-text {
    font-size: 1.3rem;
    color: #d4a5b9;
}

/* Pravý kontakt */
.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

.footer-socials {
    margin-top: 30px;
}

.footer-socials a {
    color: #333;
    font-size: 1.2rem;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #d4a5b9;
}

/* Spodní lišta */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responzivita */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact, .footer-col {
        text-align: center;
    }
    .benefit-list li {
        justify-content: center;
    }
    .footer-socials a {
        margin: 0 10px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* --- PRAVÁ ČÁST PATIČKY --- */
.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Zarovnání obsahu doprava */
}

.footer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    max-width: 300px; /* Aby se text hezky zalamoval */
    line-height: 1.6;
}

/* --- DESIGN TLAČÍTKA --- */
.footer-contact .btn-primary {
    display: inline-block;
    text-decoration: none;
    background-color: #d4a5b9; /* Tvoje růžovo-fialová */
    color: #fff;
    padding: 14px 35px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px; /* Jen mírné zaoblení pro luxusní look */
    transition: all 0.3s ease;
    border: 2px solid #d4a5b9;
    box-shadow: 0 4px 15px rgba(212, 165, 185, 0.3);
}

.footer-contact .btn-primary:hover {
    background-color: transparent;
    color: #d4a5b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 185, 0.4);
}

/* --- SOCIÁLNÍ SÍTĚ POD TLAČÍTKEM --- */
.footer-socials {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #333;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #d4a5b9;
}

/* Mobilní úprava - na mobilu to vycentrujeme */
@media (max-width: 992px) {
    .footer-contact {
        text-align: center;
        align-items: center;
        margin-top: 40px;
    }
    .footer-contact p {
        max-width: 100%;
    }
}
/* --- STRÁNKA NAŠE FENKY --- */
.females-page {
    padding-top: 140px; /* Aby navigace nepřekrývala nadpis */
    background-color: #fff;
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
}

.header-line {
    width: 50px;
    height: 2px;
    background-color: #d4a5b9;
    margin: 20px auto;
}

/* Položka fenky */
.female-item {
    max-width: 1300px;
    margin: 0 auto 150px;
    padding: 0 5%;
}

.female-main-info {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
}

/* Střídání stran */
.female-item.reverse .female-main-info {
    flex-direction: row-reverse;
}

.female-text {
    flex: 1;
}

.female-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 10px 0 25px;
    color: #333;
}

.female-desc {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.female-stats {
    list-style: none;
    border-top: 1px solid #f2f2f2;
    padding-top: 25px;
}

.female-stats li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.female-stats strong {
    color: #d4a5b9;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-right: 10px;
}

.female-image {
    flex: 1;
}

.female-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 20px 20px 0px #fcfafb; /* Luxusní odsazený rámeček */
    border: 1px solid #f2f2f2;
}

/* Mini galerie pod každou fenkou */
.female-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.female-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.4s ease;
    cursor: pointer;
}

.female-gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Mobilní verze */
@media (max-width: 992px) {
    .female-main-info, .female-item.reverse .female-main-info {
        flex-direction: column !important;
        gap: 40px;
    }
    .female-image img { height: 400px; }
    .female-gallery { grid-template-columns: 1fr 1fr; }
}
/* --- STRÁNKA VRHY --- */
.litters-page { padding-top: 140px; background-color: #fff; }
.litter-archive { margin-bottom: 100px; padding: 0 5%; }
.litter-meta { text-align: center; color: #d4a5b9; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px; }

/* Kontejner pro štěňata */
.puppy-carousel-wrapper { position: relative; display: flex; align-items: center; max-width: 1400px; margin: 0 auto; }
.puppy-grid { display: flex; gap: 20px; overflow-x: hidden; scroll-behavior: smooth; padding: 20px 0; width: 100%; }

.puppy-card { min-width: calc(25% - 15px); background: #fff; border: 1px solid #f2f2f2; transition: 0.3s; }
.puppy-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212, 165, 185, 0.1); }

/* Vnitřní slider štěněte */
.puppy-slider { position: relative; height: 350px; overflow: hidden; }
.puppy-slides { display: none; height: 100%; }
.puppy-slides.active { display: block; }
.puppy-slides img { width: 100%; height: 100%; object-fit: cover; }

.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); border: none; padding: 10px; cursor: pointer; font-size: 0.8rem; color: #d4a5b9; }
.slide-btn.prev { left: 5px; }
.slide-btn.next { right: 5px; }

.puppy-info { padding: 20px; text-align: center; }
.puppy-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 5px; }

/* Hlavní navigace carouselu */
.carousel-nav { background: none; border: none; font-size: 2rem; color: #d4a5b9; cursor: pointer; padding: 0 20px; transition: 0.3s; }
.carousel-nav:hover { color: #333; }

@media (max-width: 1024px) { .puppy-card { min-width: calc(50% - 10px); } }
@media (max-width: 600px) { .puppy-card { min-width: 100%; } }
/* --- STRÁNKA INFORMACE --- */
.info-page {
    padding-top: 140px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 60px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* Služby/Ikonky */
.services-grid-section {
    padding: 80px 5%;
    background-color: #fcfafb;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    border: 1px solid #f2f2f2;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 185, 0.1);
}

.service-box i {
    font-size: 2.5rem;
    color: #d4a5b9;
    margin-bottom: 20px;
}

.service-box h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Sekce požadavky (Foto + Text) */
.requirements-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.req-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.req-image {
    flex: 1;
}

.req-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.req-text {
    flex: 1;
}

.req-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 15px 0 25px;
}

.req-text ul {
    list-style: none;
    margin: 25px 0;
}

.req-text ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #444;
}

.req-text ul i {
    color: #d4a5b9;
    margin-right: 15px;
}

.note {
    font-weight: 700;
    color: #d4a5b9;
    font-style: italic;
}

/* Mobilní verze */
@media (max-width: 768px) {
    .req-content {
        flex-direction: column-reverse;
    }
}
/* --- BLOG PAGE --- */
.blog-page {
    padding-top: 140px;
}

/* Featured Post */
.featured-post-section {
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.featured-card {
    display: flex;
    background: #fcfafb;
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
}

.featured-img {
    flex: 1.5;
    height: 500px;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 60px;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
}

/* Grid Článků */
.blog-grid-section {
    max-width: 1300px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.blog-item {
    transition: 0.3s;
}

.blog-img-wrapper {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-item:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    text-decoration: none;
    color: #d4a5b9;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 80px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    border-radius: 50%;
    transition: 0.3s;
}

.pagination a.active, .pagination a:hover {
    background-color: #d4a5b9;
    color: #fff;
    border-color: #d4a5b9;
}

/* Responzivita */
@media (max-width: 992px) {
    .featured-card {
        flex-direction: column;
    }
    .featured-img {
        width: 100%;
        height: 300px;
    }
    .featured-content {
        padding: 40px 20px;
    }
    .featured-content h2 {
        font-size: 2rem;
    }
}
/* --- CONTACT PAGE --- */
.contact-page { padding-top: 140px; }

.contact-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Informace vlevo */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #fcfafb;
    color: #d4a5b9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.2rem;
}

.contact-item h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
}

.contact-image-box {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-image-box img {
    width: 100%;
    display: block;
}

/* Formulář vpravo */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border: 1px solid #f2f2f2;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(212, 165, 185, 0.1);
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #d4a5b9;
    background: #fff;
}

/* Mapa */
.map-section {
    line-height: 0; /* Odstraní mezeru pod iframe */
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}