body {
    background: rgb(248, 126, 203);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    text-align: center;
}

/* NAVBAR */
nav {
    background: #111;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 15px;
    font-weight: bold;
}

/* HEADINGS */
h1 {
    margin-top: 30px;
    color: #222;
}

h2 {
    margin-top: 40px;
}

/* MENU LAYOUT */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}
@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.menu-item {
    width: 220px;
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-item h3 {
    margin: 10px 0 5px;
}

.menu-item p {
    font-weight: bold;
}

.menu-item {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.menu-item:hover {
    transform: scale(1.03);
}

.menu-item h3 {
    margin: 10px 0 5px;
}

.menu-item p {
    margin-bottom: 10px;
    font-weight: bold;
}

.order-platforms {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.order-platforms a {
    text-decoration: none;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.order-platforms a:nth-child(1) {
    background: #00ccbc;
}

.order-platforms a:nth-child(2) {
    background: #ff8000;
}

.order-platforms a:nth-child(3) {
    background: #000000;
}

.hero{
    height: 90vh;
    background-image: url("images/Banner.jpg");
    background-size: cover;
    background-position: center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.hero h1{
    font-size:70px;
    margin-bottom:10px;
}

.hero p{
    font-size:25px;
}

.order-platforms{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.order-platforms a{
    text-decoration:none;
    color:white;
    padding:15px 25px;
    border-radius:10px;
    font-weight:bold;
}

.order-platforms a:nth-child(1){
    background:#00CCBC;
}

.order-platforms a:nth-child(2){
    background:#ff8000;
}

.order-platforms a:nth-child(3){
    background:black;
}

.hero {
    height: 90vh;
    background-image: url("images/Banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
}

.order-platforms {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.order-platforms a {
    text-decoration: none;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
}

.order-platforms a:nth-child(1) {
    background: #00CCBC;
}

.order-platforms a:nth-child(2) {
    background: #FF8000;
}

.order-platforms a:nth-child(3) {
    background: black;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;

    /* Makes it look premium */
    backdrop-filter: blur(8px);
}

.hero h1 {
    color: white;
    font-size: 70px;
    text-shadow: 2px 2px 15px black;
}

.hero p {
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 15px black;
}

.logo {
    width: 150px;
    margin-bottom: 15px;
}