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

:root {
    --bg-color: #0d0d0d;
    --text-color: #f5f5f5;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    /* Забороняємо горизонтальний скрол, якщо елементи вилізуть */
    overflow-x: hidden; 
    width: 100%;
}

h1 {
    font-size: clamp(3rem, 10vw, 15rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

p, a {
    font-size: clamp(1rem, 2vw, 3rem);
    color: inherit;
    text-decoration: none;
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 5vw, 8rem);
    font-weight: 300;
}

.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.full-width-image {
    width: 100vw;
    display: block;
}

.full-width-image img {
    width: 100%;
    height: auto; 
    display: block;
    /* height: 100vh; */
    /* object-fit: cover; */
}

.text-block {
    width: 100vw;
    padding: 15vw 5vw;
    text-align: center;
    background-color: #1a1a1a;
}

.footer {
    width: 100vw;
    padding: 10vw 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    background-color: #000;
}

.footer a {
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer a:hover::after {
    transform: scaleX(1);
}