@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: url('https://www.image2url.com/r2/default/images/1777754244285-e9ac2279-84f2-4ae7-84ee-7872e63e5b9e.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

/* 🔥 OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.6)
    );
    z-index: -1;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px clamp(20px,5vw,60px);
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.65);
    z-index: 1000;
}

/* 🔥 LOGO HOVER */
.logo {
    font-family: 'Playfair Display';
    font-size: 1.8rem;
    transition: 0.3s;
}

.logo:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(255, 215, 100, 0.7);
}

/* NAV LINKS */
.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    position: relative;
    transition: 0.3s;
}

/* 🔥 UNDERLINE EFFECT */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: white;
    transition: 0.3s;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

/* MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero {
    margin-top: 100px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(1.8rem,4vw,3rem);
}

/* 🔥 BUTTON HOVER */
.hero a {
    padding: 14px 25px;
    background: white;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero a:hover {
    background: black;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* MENU */
#menu {
    padding: 50px 20px;
    text-align: center;
}

.food-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    margin-top: 30px;
}

/* 🔥 CARD */
.food-card {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* 🔥 CARD HOVER */
.food-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.food-card img {
    width: 90%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
}

/* ABOUT */
#about {
    padding: 50px 20px;
    text-align: center;
}

.about {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#about img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    transition: 0.3s;
}

/* 🔥 IMAGE HOVER */
#about img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* CONTACT */
#contact {
    padding: 50px 20px;
    text-align: center;
}

.contact-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    transition: 0.3s;
}

/* 🔥 CONTACT HOVER */
.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.8);
}

/* MOBILE */
@media(max-width:768px){

    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.95);
        display: none;
        padding: 20px;
    }

    .nav-list.active {
        display: flex;
    }
}

