/* 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: 1100px;
    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;
}

/* STAR IMAGES */
.star {
    position: absolute;
    width: clamp(18px, 4vw, 56px);
    height: auto;
    pointer-events: none;
    /* prevent stars from blocking clicks */
}

/* LEFT STAR - default */
.star-left {
    top: 30%;
    left: 26%;
}

/* RIGHT STAR - default */
.star-right {
    top: 54%;
    right: 32%;
    width: 22px;
}

/* 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 */

/* laptop */
@media (max-width: 1440px) {

    /* Stars responsive position */
    .star-left {
        top: 28%;
        left: 18%;
        width: 40px;
    }

    .star-right {
        top: 52%;
        right: 25%;
        width: 20px;
    }


}

/* laptop */
@media (max-width: 1024px) {

    /* Stars responsive position */
    .star-left {
        top: 32%;
        left: 14%;
        width: 40px;
    }

    .star-right {
        top: 50%;
        right: 22%;
        width: 20px;
    }


}

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

    .contact {
        font-size: 15px;
    }

    /* Stars responsive position */
    .star-left {
        top: 32%;
        left: 14%;
        width: 40px;
    }

    .star-right {
        top: 50%;
        right: 22%;
        width: 20px;
    }

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

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

    .star-left {
        top: 32%;
        left: 15%;
        width: 32px;
    }

    .star-right {
        top: 48%;
        right: 12%;
        width: 18px;
    }

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