/* addedstyles.css — wszystkie nowe style CSS */

/* ===== BLOG SECTION ===== */

.blogSection__tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    font-family: var(--txt);
}

.blogSection__heading {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 400;
    max-width: 520px;
}

@media screen and (max-width: 768px) {
    .blogSection__heading {
        font-size: 32px;
    }
    .blogSection__right {
        align-items: flex-start !important;
        margin-top: 24px;
    }
}

.blogSection__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    max-width: 400px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .blogSection__desc {
        text-align: left;
    }
}

.blogSection__card {
    display: flex;
    flex-direction: column;
}

.blogSection__card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.blogSection__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.blogSection__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blogSection__card-link:hover .blogSection__img {
    transform: scale(1.04);
}

.blogSection__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #000 !important;
    margin-bottom: 14px;
}

.blogSection__divider {
    border: none;
    border-top: 1px solid #d9d9d9;
    margin: 0 0 12px 0;
}

.blogSection__date {
    font-size: 13px;
    color: #888;
    font-family: var(--txt);
    letter-spacing: 0.5px;
}

/* ===== END BLOG SECTION ===== */

/* ===== DOG HERO ===== */

.dogHero {
    background: #fdf7f0;
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.dogHero__bg-shape {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe8d2 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dogHero__bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d4b8a0 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.dogHero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* --- Content --- */

.dogHero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dogHero__tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hover);
    font-family: var(--txt);
    background: rgba(231, 95, 97, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    width: fit-content;
}

.dogHero__heading {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a !important;
    letter-spacing: -1px;
}

.dogHero__heading em {
    font-style: normal;
    color: var(--hover) !important;
}

.dogHero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
}

.dogHero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hover);
    color: #fff !important;
    font-family: var(--txt);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    width: fit-content;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(231, 95, 97, 0.35);
}

.dogHero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(231, 95, 97, 0.45);
}

.dogHero__cta-arrow {
    transition: transform 0.25s ease;
}

.dogHero__cta:hover .dogHero__cta-arrow {
    transform: translateX(5px);
}

/* --- Media --- */

.dogHero__media {
    position: relative;
    display: flex;
    justify-content: center;
}

.dogHero__img-wrap {
    position: relative;
    border-radius: var(--border-radius);
    overflow: visible;
    width: 100%;
    max-width: 520px;
}

.dogHero__img-wrap::before {
    content: '';
    position: absolute;
    inset: 20px 20px -20px -20px;
    background: #f0d9c8;
    border-radius: var(--border-radius);
    z-index: -1;
}

.dogHero__img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
    position: relative;
    z-index: 1;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.dogHero__img-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: rgba(231, 95, 97, 0.2);
    filter: blur(20px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.dogHero__badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: #fff;
    border-radius: 100px;
    padding: 12px 20px;
    font-family: var(--txt);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 2;
}

.dogHero__badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}

/* --- Responsive --- */

@media screen and (max-width: 992px) {
    .dogHero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .dogHero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dogHero__media {
        order: -1;
    }

    .dogHero__img-wrap {
        max-width: 400px;
    }

    .dogHero__badge {
        left: auto;
        right: 0;
        bottom: 16px;
    }
}

@media screen and (max-width: 576px) {
    .dogHero {
        padding: 64px 0 48px;
    }

    .dogHero__heading {
        font-size: 36px;
    }

    .dogHero__desc {
        font-size: 15px;
    }

    .dogHero__bg-shape {
        width: 320px;
        height: 320px;
        top: -60px;
        right: -80px;
    }
}

/* ===== END DOG HERO ===== */
