html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

/* SECTION 1 */

.hero {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
	transform: translateY(-40px);
}

h1 {
    font-size: 22vw;
    font-weight: bold;
    line-height: 0.9;
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
}

h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-shadow: -2px 0 #FF3729, 2px 0 #33FF33;
    z-index: -1;
}

.catchphrase {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    opacity: 0.9;
}

/* BOUTON SCROLL */

.scroll-btn {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);

    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;

    padding: 12px 24px;
    border: 1px solid white;
    border-radius: 50px;

    transition: 0.3s;
}

.scroll-btn:hover {
    background: white;
    color: black;
}

/* SECTION 2 */

.content {
    min-height: 100vh;
    padding: 100px 10%;
    background: #111;
    box-sizing: border-box;
	text-align: justify;
}

.content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 40px;
	text-align: left;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.showcase {
    margin-top: 100px;
    display: flex;
    gap: 40px;
}

.showcase-item {
    flex: 1;
}

.showcase-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}


.showcase-item h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.showcase-item p {
    color: #bbb;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .showcase {
        flex-direction: column;
    }
}




