/*=========================================================
SERENGETI HEROES
Luxury Experiences
=========================================================*/

.luxury-experiences-section{
    position:relative;
    padding:120px 0;
    background:#ffffff;
    overflow:hidden;
}

.luxury-experiences-section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:180px;
    height:2px;
    background:#B8863B;
}

/*==================================================
SECTION HEADER
==================================================*/

.luxury-section-heading{
    max-width:900px;
    margin:0 auto 90px;
    text-align:center;
}

.section-overline{
    display:inline-block;
    margin-bottom:18px;
    color:#B8863B;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.luxury-section-heading h2{
    margin:0 0 25px;
    font-family:Georgia,serif;
    font-size:56px;
    font-weight:400;
    line-height:1.1;
    color:#1C2B24;
}

.section-description{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/*==================================================
LAYOUT
==================================================*/

.luxury-experience-list{
    display:flex;
    flex-direction:column;
    gap:90px;
}

.luxury-experience{
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:80px;
    align-items:center;
}

.luxury-experience.reverse{
    direction:rtl;
}

.luxury-experience.reverse>*{
    direction:ltr;
}

/*==================================================
IMAGE
==================================================*/

.experience-image{
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(0,0,0,.10);
}

.experience-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
    transition:transform .9s ease;
}

.luxury-experience:hover img{
    transform:scale(1.08);
}

/*==================================================
CONTENT
==================================================*/

.experience-content{
    max-width:520px;
}

.experience-number{
    margin-bottom:20px;
    color:#B8863B;
    font-family:Georgia,serif;
    font-size:72px;
    line-height:1;
    opacity:.25;
}

.experience-icon{
    width:70px;
    height:70px;
    margin-bottom:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#1C2B24;
    color:#fff;

    font-size:26px;
}

.experience-content h3{
    margin:0 0 25px;
    color:#1C2B24;
    font-family:Georgia,serif;
    font-size:42px;
    font-weight:400;
    line-height:1.2;
}

.experience-content p{
    margin-bottom:35px;
    color:#666;
    font-size:17px;
    line-height:2;
}

.luxury-link{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#B8863B;

    font-size:13px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:2px;

    text-decoration:none;

    transition:.3s;
}

.luxury-link::after{
    content:"→";
    transition:.3s;
}

.luxury-link:hover{
    color:#1C2B24;
}

.luxury-link:hover::after{
    transform:translateX(8px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .luxury-experience,
    .luxury-experience.reverse{

        grid-template-columns:1fr;
        gap:45px;
        direction:ltr;
    }

    .experience-content{
        max-width:100%;
    }

}

@media(max-width:768px){

    .luxury-experiences-section{
        padding:80px 0;
    }

    .luxury-section-heading{
        margin-bottom:60px;
    }

    .luxury-section-heading h2{
        font-size:38px;
    }

    .section-description{
        font-size:16px;
    }

    .experience-image img{
        height:340px;
    }

    .experience-number{
        font-size:48px;
    }

    .experience-content h3{
        font-size:30px;
    }

}