html {
    scroll-behavior: smooth;
}

/* =========================================
   STANDARDIZED PAGE HERO BANNER
   ========================================= */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 450px;
    padding-top: 80px;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 70, 50, 0.82);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #efe5db;
    letter-spacing: 4px;
    margin: 0;
}

/* =========================================
   SECTION 1: ADOPTION INTRO & EMAIL
   ========================================= */
.adoption-info-section {
    background-color: #efe5db;
    padding: 100px 5% 60px;
}

.adoption-info-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 12px;
}

.adoption-info-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
    margin-bottom: 20px;
}

.adoption-lead-text {
    font-size: 1.18rem;
    line-height: 1.85;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 35px;
}

.contact-email-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.email-subheading {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    opacity: 0.75;
    margin-bottom: 8px;
}

.direct-email-anchor {
    font-size: 2rem;
    font-weight: 900;
    color: #1c4632;
    text-decoration: none;
    transition: color 0.2s ease;
}

.direct-email-anchor:hover {
    color: #2a6649;
    text-decoration: underline;
}

/* =========================================
   SECTION 2: WHY ADOPTION MATTERS
   ========================================= */
.adoption-reality-section {
    background-color: #efe5db;
    padding: 40px 5% 60px;
}

.adoption-reality-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.reality-text-block h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
    margin-bottom: 20px;
}

.reality-text-block p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* =========================================
   SECTION 3: BECOME PART OF US
   ========================================= */
.adoption-community-section {
    background-color: #efe5db;
    padding: 40px 5% 60px;
}

.adoption-community-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.community-text-block h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
    margin-bottom: 20px;
}

.community-text-block p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* =========================================
   SECTION 4: ANIMALS GALLERY
   ========================================= */
.adoption-gallery-section {
    background-color: #efe5db;
    padding: 60px 5% 80px;
}

.adoption-gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.animal-item {
    display: flex;
    flex-direction: column;
}

.animal-media-frame {
    width: 100%;
    height: 320px;
    background-color: #000000;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.animal-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.animal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.animal-content-block {
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.animal-tag-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #efe5db;
    background-color: #1c4632;
    padding: 4px 10px;
    margin-bottom: 12px;
    border-radius: 0;
}

.animal-content-block h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 8px;
}

.animal-meta-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
    color: #1c4632;
    margin-bottom: 15px;
    opacity: 0.9;
}

.animal-content-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 25px;
    flex-grow: 1;
}

.adopt-jump-btn {
    display: inline-block;
    text-align: center;
    background-color: #1c4632;
    color: #efe5db;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid #1c4632;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.adopt-jump-btn:hover {
    background-color: #2a6649;
    color: #ffffff;
}

/* =========================================
   SECTION 5: GROW OUR ADOPTION PROGRAM
   ========================================= */
.adoption-donation-section {
    background-color: #efe5db;
    padding: 60px 5% 120px;
}

.adoption-don-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.adoption-don-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
    margin-bottom: 18px;
}

.adoption-don-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 35px;
}

.don-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.don-preset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.don-preset-btn {
    background-color: #ffffff;
    color: #1c4632;
    border: 2px solid #1c4632;
    padding: 14px 0;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
}

.don-preset-btn:hover,
.don-preset-btn.active {
    background-color: #1c4632;
    color: #efe5db;
}

.don-custom-box {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #1c4632;
}

.don-custom-box input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 1.1rem;
    color: #1c4632;
    outline: none;
    background: transparent;
    font-weight: 700;
    border-radius: 0;
}

.don-custom-box .currency-tag {
    padding: 0 18px;
    font-weight: 900;
    color: #1c4632;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.don-action-row {
    width: 100%;
    margin-top: 10px;
}

.don-submit-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: #1c4632;
    color: #efe5db;
    padding: 18px 25px;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #1c4632;
    border-radius: 0;
    transition: background-color 0.2s ease;
}

.don-submit-btn:hover {
    background-color: #2a6649;
    color: #ffffff;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */
@media (max-width: 950px) {
    .animals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .page-hero-banner {
        height: 320px;
        padding-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .adoption-info-container h2,
    .reality-text-block h2,
    .community-text-block h2,
    .gallery-header h2,
    .adoption-don-container h2 {
        font-size: 2rem;
    }

    .direct-email-anchor {
        font-size: 1.4rem;
    }

    .animals-grid {
        grid-template-columns: 1fr;
    }

    .don-preset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}