/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

html {
    scroll-behavior: smooth;
}

body { background-color: #1a1a1a; color: #fff; line-height: 1.6; }

.logo img{
    width: 100px;
    height: auto;
}
/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: bold; }

/* Hero Section */

.slide {
    background-size: cover;
    background-position: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out; /* The smooth fade speed */
}

.slide.active {
    opacity: 1; /* Show the active slide */
}

/* Dark overlay to make text pop */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    z-index: 1;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider, .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero h1 { font-size: 4rem; margin-bottom: 10px; color: #f1c40f; }

/* Menu Grid */
#menu { padding: 100px 50px; text-align: center; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.menu-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-item:hover { transform: translateY(-10px); border: 1px solid #f1c40f; }
.price { color: #f1c40f; font-weight: bold; font-size: 1.2rem; }

#promo {
    background: #2a2a2a;
    padding: 50px;
    text-align: center;
    margin: 50px 0;
}

#promo img {
    width: 700px;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    margin-top: 20px;
}

/* Buttons */
.btn-main {
    padding: 15px 30px;
    background: #f1c40f;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
footer {
    background: rgba(0,0,0,0.8);
    padding: 20px 50px;
    margin-top: 50px;
}
footer a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
}