/* ============================================================
   СТИЛИ СТРАНИЦЫ СОБАКИ (CHAMPION PROFILE)
   ============================================================ */

/* ===================== ОБЩИЕ ===================== */
.dog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Герой-секция */
.dog-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(to bottom, rgba(10, 15, 29, 0), #0a0f1d);
    text-align: center;
}

/* Основная информация + фото */
.dog-main-info {
    margin-bottom: 80px;
}

/* Фото собаки */
.dog-photo-main {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 171, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.dog-photo-main img {
    width: 100%;
    display: block;
}

/* Имя и статус */
.dog-details h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #d4af37);
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.dog-status {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-left: 3px solid #c70036;
    border-radius: 4px;
    min-height: 80px;
}

.stat-item label {
    display: block;
    color: #9da1aa;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stat-item span {
    font-weight: 500;
    color: #e0e0e5;
}

/* ===================== О ЗАРЕ ===================== */
.about-zara {
    padding: 100px 5% 90px;
    background: #11141f;
    width: 100%;
}

.about-zara .inner-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-zara .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.about-zara .dog-description p {
    font-size: 1.13rem;
    line-height: 1.9;
    color: #9da1aa;
    margin-bottom: 1.3em;
}

/* ===================== НАГРАДЫ ===================== */
.awards-section {
    padding: 100px 5% 90px;
    background: #11141f;
    width: 100%;
}

.awards-section .inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.award-card {
    background: #1a1f2e;
    padding: 28px 30px;
    border-radius: 20px;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(212, 171, 55, 0.15);
}

.award-card h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.award-card p {
    color: #9da1aa;
    line-height: 1.6;
}

/* ===================== ПОТОМКИ ===================== */
.progeny-section {
    padding: 100px 5% 110px;
    background: #0a0f1d;
    width: 100%;
}

.progeny-section .inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.progeny-section .section-desc {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: #9da1aa;
}

.progeny-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.progeny-card {
    background: #1a1f2e;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.progeny-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(212, 171, 55, 0.2);
}

.progeny-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.progeny-info {
    padding: 22px 20px;
    text-align: center;
}

.progeny-info h4 {
    margin: 0 0 8px 0;
    color: #d4af37;
    font-size: 1.25rem;
}

.progeny-info p {
    color: #9da1aa;
    font-size: 0.95rem;
}

/* ===================== ГАЛЕРЕЯ ===================== */
.gallery {
    padding: 100px 5% 120px;
    background: #11141f; 
    width: 100%;
}

.gallery .inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery .section-title {
    margin-bottom: 50px;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Стрелки и точки галереи */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 15, 29, 0.7);
    color: #d4af37;
    border: 1px solid rgba(212, 171, 55, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #c70036;
    color: white;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.3);
}

/* ===================== АДАПТИВНОСТЬ ===================== */
@media (max-width: 768px) {
    .slide { height: 400px; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dog-details h1 {
        font-size: 2.4rem;
    }
    
    .about-zara,
    .awards-section,
    .progeny-section,
    .gallery {
        padding: 70px 5% 80px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================== РОДОСЛОВНАЯ ===================== */
.pedigree-section {
    padding: 100px 5% 90px;
    background: #0a0f1d;
    width: 100%;
}

.pedigree-section .inner-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pedigree-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.pedigree-intro {
    font-size: 1.35rem;
    font-weight: 600;
    color: #d4af37;
    text-align: center;
    margin-bottom: 10px;
}

.health-info {
    text-align: center;
    color: #9da1aa;
    font-size: 1.1rem;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.pedigree-tree {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px 60px;
}

.pedigree-generation h4,
.pedigree-grand h4 {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-align: center;
}

.dog-line {
    background: #1a1f2e;
    padding: 22px 26px;
    border-radius: 16px;
    line-height: 1.7;
    color: #e0e0e5;
    border-left: 4px solid #c70036;
}

.dog-line strong {
    color: #d4af37;
    font-size: 1.15rem;
}

/* Адаптив */
@media (max-width: 768px) {
    .pedigree-tree {
        gap: 30px;
    }
    
    .pedigree-section {
        padding: 70px 5% 80px;
    }
}

/* ===================== ЛОГОТИП ===================== */
.logo {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(214, 178, 60) 0%, rgba(253, 228, 131)100%);
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    padding-bottom: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
    transform: scale(1.03);
}