/* Experience Pages CSS */
.exp-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.exp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.exp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.5), rgba(13,13,13,1));
}

.exp-hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
    max-width: 56rem;
}

.back-link {
    display: inline-block;
    color: rgba(255, 215, 0, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.back-link:hover { color: var(--primary); }

.exp-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.exp-hero-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--primary);
}

.exp-content {
    padding: 4rem 0 6rem;
}

.exp-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.exp-lead {
    font-family: var(--body-font);
    font-size: 1.125rem;
    color: rgba(232, 227, 213, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.exp-body {
    font-family: var(--body-font);
    font-size: 1rem;
    color: rgba(232, 227, 213, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.exp-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.exp-gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.exp-gallery-wide {
    grid-column: 1 / -1;
}

.exp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

@media (max-width: 768px) {
    .exp-gallery {
        grid-template-columns: 1fr;
    }
    .exp-gallery-wide {
        grid-column: 1;
    }
}