body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0E140E;
    color: #fff;
    text-align: center;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 750px;
    background: url('assets/images/plattersbackground.jpg') center/cover no-repeat;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.logo {
    width: 280px;
    margin-bottom: 5px;
}

.title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 275;
    margin: 0px auto 0;
    max-width: 550px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
}

/* MENU BUTTONS */
.menu-section {
    margin-top: 25px;
}

.menu-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.menu-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-align: center;
    width: 80%;
    max-width: 350px;
    margin: 10px auto;
    padding: 12px;
    border-radius: 30px;
    border: 2px solid white;
    background: transparent;
    color: #d4a02c;
    cursor: pointer;
}

/* ALLERGY NOTICE */
.allergy {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.5px;
    margin: 30px 0;
    color: #ccc;
    font-size: 13px;
    background: #0e140e;
}

/* FOOTER */
.footer {
    padding-bottom: 40px;
    background: #0E140E;
}
.contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.contact span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    margin: 5px 0;
    font-size: 15px;
}

.location {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 15px;
    font-size: 13px;
    color: #0b0b0b;
    background: #f5f5f5;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* MOBILE */

@media (max-width: 480px) {

    .hero {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .logo {
        width: 230px;
        margin-bottom: 0px;
        margin-top: 50px;
    }

    .title {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 12px;
        max-width: 320px;
        line-height: 1.4;
    }

    /* MENU SECTION */
    .menu-section {
        margin-top: 40px;
    }

    .menu-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .menu-btn {
        width: 70%;
        max-width: 300px;
        padding: 12px;
        font-size: 15px;
        border-width: 1.5px;
        margin: 8px auto;
    }

    /* ALLERGY NOTICE */
    .allergy {
        font-size: 10px;
        margin: 20px 10px;
    }

    /* FOOTER */
    .footer {
        padding-bottom: 25px;
    }
    .contact{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .contact span {
        font-size: 10px;
    }

    .location {
        font-size: 10px;
        padding: 8px 20px;
        line-height: 1.4;
    }
}
