/* ===== Base Styling ===== */
body {
    font-family: 'Varela Round', sans-serif;
    color: #001F3F;
    background-color: #F6F4EB;
    margin: 0;
    padding: 0;
}

/* ===== Header Section ===== */
.header-container {
    position: relative;
    height: 60vh;
    min-height: 320px;
    color: #F6F4EB;
    overflow: hidden;
}

#header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
    position: absolute;
}

#header-text-container {
    z-index: 1;
    text-align: center;
}

.header-container h1 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #F6F4EB !important;
}

.header-text {
    font-family: 'Varela Round', serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #F6F4EB;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .header-container h1 {
        font-size: 2.5rem;
    }

    .header-text {
        font-size: 1.125rem;
    }
}

/* ===== About Section ===== */
.about-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 60px 20px;
    margin: 60px auto;
    max-width: 1000px;
}

    .about-section h2 {
        font-family: 'Lora', serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: #001F3F;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-section p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: justify;
        color: #001F3F;
    }

    .about-section .lead {
        font-size: 1.2rem;
        color: #001F3F !important;
    }

    .about-section .highlight {
        font-style: italic;
        font-weight: 600;
        color: #001F3F !important;
    }

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 60px 15px;
    background: #ffffff;
}

    .gallery-section h2 {
        font-family: 'Lora', serif;
        font-weight: 700;
        color: #001F3F;
    }

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img,
    .gallery-item video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        object-fit: cover;
    }

/* ===== Buttons ===== */
.btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* ===== Map Section (if used) ===== */
#map {
    text-align: center;
}

    #map iframe {
        max-width: 100%;
        height: auto;
    }

/* ===== Typography ===== */
h1, h3, h4, h5 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #F6F4EB !important;
}

h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #001F3F;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .about-section {
        margin: 40px 15px;
        padding: 40px 15px;
    }

        .about-section h2 {
            font-size: 1.8rem;
        }

    .gallery-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        height: 45vh;
    }

    .about-section p {
        font-size: 0.95rem;
    }
}
