/* ======================================================== */
/* OPTION 3: MODERN BLOG/STORE - Clean & Commercial         */
/* ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=DM+Serif+Display&display=swap');

:root {
    --navy: #1E2B3A;
    --steel: #4A6572;
    --coral: #FF7F6B;
    --light: #F8F9FD;
    --gray: #E8ECF1;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    background: var(--light);
    color: var(--navy);
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.site-header {
    background: white;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--coral);
    flex-wrap: wrap;
}

.brand h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    margin: 0;
    color: var(--navy);
}

.brand p {
    margin: 5px 0 0;
    color: var(--steel);
    font-size: 0.9rem;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.main-menu a:hover {
    border-bottom-color: var(--coral);
}

.main-content {
    padding: 40px;
}

/* Приветствие в стиле "О нас" */
.welcome-card {
    background: var(--light);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.welcome-image:hover {
    transform: scale(1.03);
}

.welcome-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin: 0 0 20px;
    color: var(--navy);
    line-height: 1.2;
}

.welcome-text p {
    color: var(--steel);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Заголовок секции */
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--coral);
    margin: 15px auto 0;
}

/* Сетка как в интернет-магазине */
.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Карточка товара */
.puppy-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray);
    transition: all 0.3s;
}

.puppy-card:hover {
    box-shadow: 0 20px 30px -10px rgba(255, 127, 107, 0.2);
    border-color: var(--coral);
}

.card-header {
    background: var(--navy);
    padding: 18px 20px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.card-header h3 a {
    color: white;
    text-decoration: none;
}

.puppy-date {
    color: var(--coral);
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.card-body {
    padding: 20px;
}

.card-body p {
    color: var(--steel);
    margin: 0 0 15px;
    line-height: 1.5;
}

/* Кнопка "Подробнее" в стиле магазина */
.card-body a {
    display: inline-block;
    background: var(--coral);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s;
    border: none;
}

.card-body a:hover {
    background: var(--navy);
}

/* Карточка достижений */
.achievements-card .card-body a {
    background: var(--navy);
}

.achievements-card .card-body a:hover {
    background: var(--coral);
}

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

.achievements-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
    color: var(--steel);
}

/* Счетчики */
.counters-section {
    background: var(--navy);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.counters-section img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.counters-section img:hover {
    opacity: 1;
}

/* Подвал */
.site-footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    border-top: 4px solid var(--coral);
}

.site-footer a {
    color: var(--coral);
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 800px) {
    .site-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .welcome-card {
        grid-template-columns: 1fr;
    }
    
    .main-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}