/* =========================================
   MARROW CHILD — SECTIONS CSS
   Clean & Minimal Style
   ========================================= */

:root {
    --color-primary: #1a1a1a;
    --color-white: #ffffff;
    --color-accent: #c8a96e;
    --color-light: #f8f8f6;
    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-light);
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.section-hero.has-overlay .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-lg) 2rem;
    max-width: 700px;
}

.section-hero.has-overlay .hero-content {
    color: var(--color-white);
}

/* Subheading */
.hero-subheading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* Heading */
.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.section-hero.has-overlay .hero-heading {
    color: var(--color-white);
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid var(--color-primary);
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.section-hero.has-overlay .hero-btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.section-hero.has-overlay .hero-btn:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 768px) {
    .section-hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: var(--spacing-md) 1.5rem;
    }
}