#hero{
    height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Ensure full height across Slick elements */
#hero .slider,
#hero .slick-list,
#hero .slick-track,
#hero .slick-slide,
#hero .slick-slide > div{
    height: 100vh;
}

/* Make entire slide clickable */
#hero .slide-link{
    display: block;
    width: 100%;
    height: 100vh;
}

/* Image behavior */
#hero .slick-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle premium hover */
#hero .slide-link img{
    transition: transform 0.6s ease;
}

#hero .slide-link:hover img{
    transform: scale(1.03);
}

/* ---------------- SECTION 1 ---------------- */

#s1{
    padding: 50px 0;
}

#s1 .row{
    justify-content: center;
}

#s1 .header{
    text-align: center;
    margin-bottom: 50px;
}

#s1 h1{
    margin-bottom: 20px;
}

#s1 img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#s1 h2{
    margin: 10px 0;
}

#s1 .location span{
    font-weight: 700;
    color: var(--black);
    margin-right: 20px;
}

#s1 .location{
    margin-bottom: 10px;
}

#s1 a{
    text-decoration: none;
}

#s1 a:hover{
    color: var(--black);
}

/* ---------------- SECTION 2 ---------------- */

#s2{
    background: #F8F8F8;
    padding: 50px 0;
}

#s2 .header h2{
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#s2 a{
    text-decoration: none;
}

#s2 img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#s2 .content h2{
    margin: 10px 0;
}

#s2 .location,
#s2 .date,
#s2 .link{
    display: flex;
}

#s2 span{
    font-weight: 700;
    width: 100px;
    display: block;
}

#s2 a:hover{
    color: var(--black);
}

#s2 .content .text{
    margin-bottom: 10px;
}

/* ---------------- SECTION 3 ---------------- */
/* NOTE: currently hidden intentionally */

#s3{
    display: none !important;
    background: #F8F8F8;
    padding: 50px 0;
}

#s3 h2{
    margin-bottom: 50px;
    text-align: center;
}

#s3 img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

#s3 a{
    text-decoration: none;
}

#s3 h3{
    font-size: 18px;
    line-height: 23px;
}

/* ---------------- SECTION 4 ---------------- */

#s4{
    padding: 50px 0;
}

#s4 .row{
    align-items: center;
}

#s4 .header{
    text-align: center;
}

#s4 h1{
    text-transform: uppercase;
}

#s4 .content p{
    font-size: 18px;
}

#s4 .header p{
    margin-top: 10px;
    color: #777777;
}

#s4 .click{
    margin-top: 40px;
}

#s4 .click p{
    color: var(--black);
}

#s4 img{
    width: 398px;
    height: 502px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* ---------------- MOBILE ---------------- */

@media(max-width:450px){
    #s4 img{
        width: 100%;
        height: auto;
    }
}