/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar-wrapper {
    display: flex;
    justify-content: center;
    padding: 24px 16px;
}

.navbar {
    width: 88%;
    max-width: 1500px;
    background: #000;
    border-radius: 50px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 28px;
}

.menu-icon {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* HERO */
.hero {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
}



/* CONTACT */
.contact {
    margin-top: 22px;
    font-size: 16px;
}

/* FOOTER */
.footer {
    padding: 28px 0;
    display: flex;
    justify-content: center;
    gap: 26px;
}

.footer a {
    color: #000;
    font-size: 28px;
    /* bigger icons */
    transition: transform 0.25s ease;
}

.footer a:hover {
    transform: scale(1.2);
}

/* RESPONSIVE */
/* Tablet */
@media (max-width: 768px) {
    .navbar {
        width: 94%;
    }

    .contact {
        font-size: 15px;
    }


    .footer a {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contact {
        font-size: 14px;
    }

    .footer a {
        font-size: 24px;
    }
}