
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: Arial, sans-serif;
    background: #1b1b1b;
    color: #f2f2f2;
    line-height: 1.6;
}

/* ==== Navbar ==== */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #2a1f1f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.logo{
    font-size: 28px;
    font-weight: bold;
    color: #ffb347;
    position: relative;
}

.sub-logo{
    display: block;
    font-size: 12px;
    color: #ffd699;
    letter-spacing: 1px;
}

/* Navbar Links */

.links{
    display: flex;
    gap: 30px;
}

.links a{
    text-decoration: none;
    color: #f2f2f2;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.links a::after{
    content: '';
    height: 2px;
    width: 0;
    background: #ffb347;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.links a:hover::after{
    width: 100%;
}

/* Hero */

.hero{
    text-align: center;
    padding: 140px 20px;
    background: linear-gradient(135deg, #4b2e2e, #1b1b1b);
    color: #fff8e7;
    position: relative;
    overflow: hidden;
}

.hero h1{
    font-size: 50px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
}

.hero p{
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #f2e1c1;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.btn-primary{
    display: inline-block;
    padding: 14px 28px;
    background: #ffb347;
    color: #1b1b1b;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.btn-primary:hover{
    background: #ffcc80;
    transform: scale(1.05);
}

/* === Menu === */

.menu{
    padding: 80px 50px;
    text-align: center;
}

.menu h2{
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffb347;
}

.menu-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.menu-card{
    background: #2a1f1f;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #3a2b2b;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.8s forwards;
}


.menu-card:nth-child(1){ animation-delay: 0.1s;}
.menu-card:nth-child(2){ animation-delay: 0.2s;}
.menu-card:nth-child(3){ animation-delay: 0.3s;}
.menu-card:nth-child(4){ animation-delay: 0.4s;}
.menu-card:nth-child(5){ animation-delay: 0.5s;}
.menu-card:nth-child(6){ animation-delay: 0.6s;}
.menu-card:nth-child(7){ animation-delay: 0.7s;}
.menu-card:nth-child(8){ animation-delay: 0.8s;}
.menu-card:nth-child(9){ animation-delay: 0.9s;}
.menu-card:nth-child(10){ animation-delay: 1s;}

.menu-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.4s;
}

.menu-card:hover img{
    transform: scale(1.05);
}

.menu-card h3{
    margin-bottom: 8px;
    color: #ffd699;
}

.menu-card p{
    color: #f2e1c1;
    margin-bottom: 10px;
}

.menu-card span{
    font-weight: bold;
    color: #ffb347;
}

.menu-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(255, 179, 71, 0.4);
    border-color: #ffb347;
}

/* About & Hours & Contact */

.about,
.hours,
.contact{
    padding: 80px 50px;
    text-align: center;
}

.about h2,
.hours h2,
.contact h2{
    font-size: 32px;
    color: #ffb347;
    margin-bottom: 30px;
}

/* Hours Cards */
.hours-container .day{
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #3a2b2b;
    transition: 0.3s;
}

.hours-container .day:hover{
    background: #3a2b2b;
}

/* Contact Form */

.contact-form{
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea{
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #3a2b2b;
    background: #2a1f1f;
    color: #fff8e7;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #ffb347;
}

.contact-form button{
    padding: 14px;
    background: #ffb347;
    border: none;
    border-radius: 8px;
    color: #1b1b1b;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #ffd699;
    transform: scale(1.05);
}

/* Footer */

footer{
    background: #2a1f1f;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #3a2b2b;
}

.footer-links a{
    color: #ffd699;
    margin: 0 10px;
    text-decoration: none;
    border-top: 1px solid #3a2b2b;
}

.footer-links a{
    color: #ffd699;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #ffb347;
    text-shadow: 0 0 5px #ffb347;
}

/* Animation */

@keyframes fadeInDown {
    0% {
        opacity: 0; transform: translateY(-30px);}
    100% {
        opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
    0% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes cardFadeIn{
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* Responsive */

@media (max-width: 768px){
    .navbar{
        padding: 15px 30px;
        flex-wrap: wrap;
    }
    .links{
        flex-direction: column;
        gap: 20px;
    }
    .menu-grid{
        grid-template-columns: 1fr;
    }
}