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

/* BASE */
body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    line-height: 1.6;
}

/* IMAGES RESPONSIVE GLOBAL */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.hero {
    height: 80vh;
    background: url('hero-mobile.webp') center no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

@media (min-width: 768px) {
    .hero {
        background: url('hero.webp') center/cover no-repeat;
    }
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;

}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 40px;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 20px;
    margin: 15px 0;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 60px;
    }
    .hero h2 {
        font-size: 26px;
    }
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #5a4a42;
    color: #fff;
}

/* STORY */
.story {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* SPLIT SECTION */
.split {
    display: flex;
    flex-direction: column;
}

.split-text {
    padding: 40px 20px;
}

.split-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: url('culture.webp') center/cover no-repeat;
}

@media (min-width: 768px) {
    .split {
        flex-direction: row;
    }

    .split-text {
        flex: 1;
        padding: 60px;
    }

    .split-img {
        flex: 1;
        height: auto;
    }
}

/* PRODUCTS */
.products {
    padding: 60px 20px;
    text-align: center;
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.product {
    width: 90%;
    max-width: 320px;
}

/* IMAGE PRODUIT (RATIO FIXE) */
.img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

/* IMAGES PRODUITS */
.tshirt {
    background-image: url('tshirt.webp');
}

.cap {
    background-image: url('cap.webp');
}

.mug {
    background-image: url('mug.webp');
}

@media (min-width: 768px) {
    .grid {
        flex-direction: row;
        justify-content: center;
    }
}

/* QUOTE */
.quote {
    padding: 60px 20px;
    background: #5a4a42;
    color: #fff;
    text-align: center;
}

/* CTA */
.cta {
    padding: 60px 20px;
    text-align: center;
}

/* FOOTER */
footer {
    padding: 30px;
    background: #5a4a42;
    color: #fff;
    text-align: center;
    font-size: 14px;
}