:root {

    --bg-left: #b7b093;
    --bg-center: #ece9dd;
    --bg-right: #b7b093;

    --title-color: #8d0016;

    --text-color: #111111;

    --icon-color: #8d0016;

    --max-content-width: 650px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {

    min-height: 100vh;

    font-family:
        "Montserrat",
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            90deg,
            var(--bg-left) 0%,
            var(--bg-center) 50%,
            var(--bg-right) 100%
        );

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--text-color);
}

.landing {

    width: min(90%, 1100px);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.logo-container {

    width: min(50vw, 634px);
    margin-bottom: 2rem;
}

.logo {

    width: 100%;
    height: auto;
    display: block;
}

h1 {

    color: var(--title-color);

    font-size: clamp(2.5rem, 5vw, 5rem);

    font-weight: 800;

    margin-bottom: 3rem;

    letter-spacing: 1px;
}

.description {

    max-width: var(--max-content-width);

    font-size: clamp(1rem, 1.2vw, 1.4rem);

    line-height: 1.6;

    font-weight: 700;

    margin-bottom: 4rem;
}

.description p + p {
    margin-top: 1rem;
}

.social-links {

    width: 100%;
    max-width: 900px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 2rem;
}

.social-item {

    display: flex;
    align-items: center;
    gap: 1rem;

    text-decoration: none;

    color: var(--text-color);

    font-weight: 700;

    font-size: 1.3rem;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.social-item:hover {

    transform: translateY(-4px);
    opacity: 0.8;
}

.social-item img {

    width: 75px;
    height: 75px;

    object-fit: contain;
}

/* TABLET */

@media (max-width: 900px) {

    .social-links {

        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .social-item {

        min-width: 200px;
        justify-content: center;
    }
}

/* MOBIL */

@media (max-width: 600px) {

    .logo-container {

        width: min(80vw, 500px);
    }

    h1 {

        margin-bottom: 2rem;
    }

    .description {

        margin-bottom: 3rem;
    }

    .social-links {

        flex-direction: column;
        gap: 1.5rem;
    }

    .social-item {

        width: 100%;
        justify-content: center;
    }

    .social-item img {

        width: 60px;
        height: 60px;
    }
}

/* =========================
   BELÉPŐ ANIMÁCIÓK
========================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kezdő állapot */

.logo-container,
h1,
.description,
.social-links {

    opacity: 0;
}

/* Logó */

.logo-container {

    animation: fadeUp 0.9s ease forwards;
}

/* Cím */

h1 {

    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

/* Leírás */

.description {

    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.4s;
}

/* Ikonok */

.social-links {

    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.6s;
}