﻿/* ===================== ABOUT HERO SECTION ===================== */
.about-hero.section {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--np-grey-hot-bg);
}

.about-hero-container {
    max-width: 100%;
    padding: 0;
}

.about-hero-card {
    width: 100%;
    background: var(--np-accent1);
    border-radius: 32px 32px 0 0;
    padding: 32px 32px 0;
    color: var(--np-white);
    position: relative; /* дозволяє позиціонувати лапу всередині */
    overflow: hidden;
}
/* ===================== END ABOUT HERO SECTION ===================== */



/* ===================== HERO CONTENT LAYOUT ==================== */
.about-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Left side */
.about-hero-left {
    max-width: 50%;
}

/* Title */
.about-hero-title {
    font-family: var(--font-logo);
    font-size: var(--fs-5xl);
    line-height: 1.1;
    color: var(--np-white);
    margin: 24px 0 32px;
    font-weight: 100;
}

/* Right side (dog image area) */
.about-hero-right {
    position: relative;
    max-width: 45%;
    height: 448px;
}

.about-hero-dog {
    width: 460px;
    height: 448px;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
/* ===================== END HERO CONTENT LAYOUT ==================== */



/* =========================== BADGES =========================== */
.about-badge {
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Top badge */
.top-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0;
    gap: 12px;
}

/* Stars */
.stars {
    font-size: 1rem;
    color: gold;
}

/* Small badge (left floating heart) */
.heart-badge {
    position: absolute;
    left: -590px;
    top: 60%;
    transform: translateY(-50%);
    z-index: 3;
}

.heart-badge img {
    width: 30px;
}

/* Phone badge above dog */
.phone-badge {
    position: absolute;
    top: 30px;
    right: 10px;
    z-index: 3;
    min-width: 200px;
}

    .phone-badge img {
        width: 30px;
    }

/* Label inside top badge */
.top-badge-label {
    background: var(--np-hover-bg);
    color: var(--np-dark);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}


/* Блок зі зірками */
.top-badge .stars {
    color: var(--np-white);
    font-weight: 600;
}

    /* Дрібніший текст всередині */
    .top-badge .stars span {
        color: var(--np-white);
        opacity: 0.9;
    }
/* =========================== END BADGES =========================== */



/* ========================= DECORATION ========================= */
.paw-decor {
    position: absolute;
    width: 260px;
    height: auto;
    bottom: -30px;
    left: 42%;
    opacity: 1;
    pointer-events: none;
    user-select: none;
}
/* ========================= END DECORATION ========================= */



/* ===================== SEARCH BAR CONTAINER =================== */
.hero-search-block {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -45px;
    position: relative;
    z-index: 5;
}

.hero-search-inner {
    width: 60%;
    background: white;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    gap: 2%;
}
/* ===================== END SEARCH BAR CONTAINER =================== */



/* ========================= SEARCH INPUT ======================= */
.search-input {
    flex: 1;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--np-white-hot);
    padding: 20px 2%;
    border-radius: 50px;
    transition: background 0.25s ease;
}

    .search-input:has(input:focus) {
        background: var(--np-about-input-active);
    }

    .search-input input {
        border: none;
        outline: none;
        font-size: 1rem;
        color: var(--np-dark);
        width: 100%;
        background: transparent;
    }

    .search-input img {
        width: 20px;
        opacity: 0.8;
    }

    .search-input input {
        border: none;
        outline: none;
        font-size: 1rem;
        color: var(--np-dark);
        width: 100%;
        background: transparent;
    }
/* ========================= END SEARCH INPUT ======================= */



/* =========================== BUTTONS ========================== */
.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none !important;
    color: var(--np-dark) !important;
    white-space: nowrap;
    padding: 20px 2%;
    border-radius: 50px;
    transition: background 0.25s ease, color 0.25s ease;
}

    .search-btn:hover {
        text-decoration: none !important;
        color: var(--np-dark) !important;
        background: var(--np-white-hot);
    }

    .search-btn img {
        width: 20px;
    }
/* =========================== END BUTTONS ========================== */



/* =========================== DIVIDERS ========================= */
.search-divider {
    width: 2px;
    background-color: var(--np-accent1);
    height: calc(100% + 20px);
    margin-top: -10px;
    margin-bottom: -10px;
    align-self: stretch;
}
/* =========================== END DIVIDERS ========================= */