/* --- General Section Styling --- */
.experience-section {
    background-color: #f3f1e9; /* Matches the warm beige background */
    color: #1a2332; /* Deep navy/charcoal for text */
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* --- Image Styling --- */
.rounded-custom {
    border-radius: 16px; /* Soft rounded corners */
}

.left-image {
    width: 100%;
    max-width: 420px;
    object-fit: cover;
    aspect-ratio: 4 / 5; /* Forces a neat portrait shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.right-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10; /* Forces a wide landscape shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.hero-section1 {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    min-height: 600px;
    /* Placeholder background image matching the party vibe */
    background-image: url('https://www.myeventzpro.com/public/MEVNTZPRO/themeaB9xY12z/assets/images/backgrounds/bg1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay to make text readable */
.hero-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Adjust opacity as needed */
    z-index: 1;
}

/* Content container above the overlay */
.hero-content1 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Scales beautifully on all devices */
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: var(--font-03);
}

/* Custom Button */
.btn-rust {
    background-color: var(--color-1);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 45px;
    border: none;
    transition: all 0.3s ease;
}

.btn-rust:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
        
/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .main-title {
        font-size: 2.5rem;
    }
    .left-image {
        margin-bottom: 40px;
        max-width: 100%;
    }
    .description-text {
        max-width: 100%;
    }
}