/* Life Section CSS */

#life-section {
    background-color: var(--bg-color);
    /* Beige */
    padding-top: 80px;
    padding-bottom: 0;
}

.life-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Text Side */
.life-text {
    flex: 1;
}

.life-text h2 {
    font-size: 2.5rem; /* Standard global h2 */
    color: var(--accent-color);
    margin-bottom: 20px;
}

.life-text .lead {
    font-size: 1.1rem; /* Standard global p */
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.life-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-text {
    color: var(--highlight-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--highlight-color);
}

/* Image Side */
.life-images {
    flex: 1;
    /* Adjust width if needed */
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Left column wider for feature */
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Feature the first image (Fest) as tall left column */
.gallery-feature {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .life-container {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        grid-template-rows: auto;
    }

    .gallery-feature {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
        /* Specific height for feature on mobile */
    }
}
