.experience-rara-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Background Image as Tag */
.experience-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

/* Semi-Transparent Overlay (#331121 at 92% opacity) */
.experience-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 17, 33, 0.92); 
    z-index: -1;
}

.experience-rara-section .container {
    z-index: 1;
}

/* --- Typography --- */
.experience-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
}

.exp-card-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 700;
}

/* --- Entrance & Zoom Effects --- */
@keyframes fadeInUpExp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal-animation {
    opacity: 0;
    animation: fadeInUpExp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exp-image-wrapper {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.exp-zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.experience-card:hover .exp-zoom-img {
    transform: scale(1.1);
}

/* --- Responsive White Buttons --- */
.experience-footer-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-exp-white {
    background-color: #ffffff;
    color: #331121 !important;
    padding: 11px 21px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.btn-exp-white:hover {
    background-color: transparent;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .experience-rara-section {
        padding: 50px 0;
    }
    .btn-exp-white {
        width: 100%;
    }
}
