/* =========================================
   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.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #efe5db;
    letter-spacing: 3px;
    margin: 0;
}

/* =========================================
   SINGLE PROJECT MAIN CONTENT (BEIGE BACKGROUND)
   ========================================= */
.project-single-section {
    background-color: #efe5db; /* Signature beige matching theme header */
    padding: 90px 5% 120px;
}

.project-single-container {
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: #1c4632;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.back-link:hover {
    text-decoration: underline;
}

.project-meta-header {
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 12px;
}

.project-meta-header h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
}

.project-story-body p {
    font-size: 1.18rem;
    line-height: 1.85;
    color: #1c4632;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* GALLERY GRID */
.project-media-gallery {
    margin-top: 60px;
    border-top: 2px solid rgba(28, 70, 50, 0.2);
    padding-top: 50px;
}

.project-media-gallery h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #1c4632;
    margin-bottom: 30px;
}

.media-grid {
    display: grid;
    gap: 30px;
}

.media-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.media-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.gallery-video {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    background-color: #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.gallery-caption {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1c4632;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .page-hero-banner {
        height: 320px;
        padding-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .project-meta-header h2 {
        font-size: 2rem;
    }

    .media-grid-2,
    .media-grid-3 {
        grid-template-columns: 1fr;
    }

    .gallery-item img,
    .gallery-video {
        height: 260px;
    }
}