/* ------------------ GENERAL RESET -------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ------------------ BODY -------------------- */

body {
    font-family: Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
}

/* ------------------ PAGE CONTAINER -------------------- */

.container {
    width: auto;
    max-width: 1440px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

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

.hero {
    background: #902c8e;
    color: white;
    padding: 38px 110px;
    width: 1440px;
    height: 422px;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hero-image {
    display: flex;
    width: 378px;
    height: 309px;
}

h3 {
    font-size: 36px;
    font-family: Oswald, sans-serif;
}

h1 {
    font-family: Oswald, sans-serif;
    font-size: 67px;
    font-weight: 700;
}

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

.feature-row {
    display: flex;
    background: white;
    padding: 45px 65px 35px;
    align-items: flex-start;
    column-gap: 20px;
}

/* ------------------ SECTION 3 -------------------- */

.overlay-section {
    width: 1440px;
    height: 843px;
    background-image: url("../image/sunset.jpg");
    background-size: cover;
    background-position: center;
}

.overlay-box {
    margin-left: 80px;
    color: white;
    width: 488px;
    height: 100%;
    padding: 80px;
    display: flex;
    text-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
}

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

.gallery {
    display: flex;
    justify-content: center;
    padding: 80px;
    column-gap: 20px;
}

/* ------------------ SECTION 5 -------------------- */

.last-row {
    display: flex;
    align-items: center;
}

.last-row img {
    width: 300px;
    height: auto;
    padding: 30px;
}
    
    