/* =====================================================
   MAPLE GROVE CEMETERY
   Main Stylesheet
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        linear-gradient(rgba(20, 20, 20, 0.45), rgba(20, 20, 20, 0.45)),
        url('../../images/Home/background.jpg');

    background-size: cover;
    background-attachment: fixed;
    background-position: center;

    color: #f4f1ea;

    font-family: 'Lora', serif;
    line-height: 1.7;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px 20px;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 10px;

    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.4rem;

    color: #d9c7a4;

    margin-bottom: 15px;
}

.hero-location {
    font-size: 1rem;

    opacity: 0.9;

    letter-spacing: 1px;
}

/* =====================================================
   MAIN CONTENT
===================================================== */

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* =====================================================
   WELCOME SECTION
===================================================== */

.welcome-section {
    background: rgba(16, 16, 16, 0.72);

    padding: 60px;

    border-radius: 12px;

    margin-bottom: 60px;

    backdrop-filter: blur(3px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.welcome-section h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;

    margin-bottom: 25px;

    color: #e2cfaa;
}

.welcome-section p {
    margin-bottom: 20px;

    font-size: 1.05rem;
}

/* =====================================================
   NAVIGATION
===================================================== */

.navigation-section {
    margin-bottom: 80px;
}

.nav-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;
}

.nav-card {
    background: rgba(20, 20, 20, 0.75);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    padding: 30px;

    text-decoration: none;

    color: #f4f1ea;

    transition: all 0.25s ease;
}

.nav-card:hover {
    transform: translateY(-5px);

    background: rgba(35, 35, 35, 0.9);

    border-color: rgba(217, 199, 164, 0.35);
}

.nav-card h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 2rem;

    margin-bottom: 15px;

    color: #e2cfaa;
}

.nav-card p {
    opacity: 0.9;
}

/* =====================================================
   FEATURE SECTION
===================================================== */

.feature-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    background: rgba(16,16,16,0.72);

    padding: 50px;

    border-radius: 12px;

    margin-bottom: 80px;
}

.feature-image {
    width: 100%;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.feature-text h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;

    margin-bottom: 20px;

    color: #e2cfaa;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    text-align: center;

    padding: 40px 20px;

    background: rgba(10,10,10,0.88);

    margin-top: 80px;
}

.site-footer p {
    margin-bottom: 10px;
}

.footer-small {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .feature-section {
        grid-template-columns: 1fr;
    }

    .welcome-section {
        padding: 35px;
    }

    .feature-section {
        padding: 35px;
    }

    .hero h1 {
        line-height: 1.1;
    }
}

@media (max-width: 600px) {

    .welcome-section h2,
    .feature-text h2 {
        font-size: 2.2rem;
    }

    .nav-card h3 {
        font-size: 1.7rem;
    }

    .welcome-section,
    .feature-section {
        padding: 25px;
    }
}