/* Experiences Page Styles */

/* Hero Section */
.experiences-hero {
    height: 90vh;
    /* Takes up most of the screen */
    height: 90dvh;
    position: relative;
    overflow: hidden;
    color: white;
}

.experiences-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.experiences-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    z-index: -1;
}

/* Ensure navbar is visible over the image */
.navbar {
    background-color: transparent !important;
    /* Force transparency initially */
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Intro Text Section */
.experiences-intro {
    background-color: #f8f5f2;
    /* Light beige background */
    padding: 6rem 0;
}

.experiences-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: flex-start;
}

.exp-title-col {
    display: flex;
    justify-content: flex-start;
}

.exp-title {
    font-family: var(--nav-font);
    /* Unbounded */
    font-size: 3.5rem;
    font-weight: 200;
    /* Thin look */
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #333;
    line-height: 1;
    margin: 0;
}

.exp-text-col {
    font-family: var(--desc-font);
    /* Cormorant Garamond */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    /* Or left, depending on preference */
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .experiences-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exp-title {
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
    }

    .exp-title-col {
        justify-content: center;
    }

    .exp-text-col {
        text-align: center;
        /* Center text on mobile often looks better */
    }
}