/* ================= RESET ================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

/* ================= THEME VARIABLES ================= */
:root{
    --primary-color: #FF9F1C;     /* Marigold */
    --secondary-color: #004E64;   /* Peacock Blue */
    --accent-color: #E63946;      /* Lotus Red */
    --text-color: #1B263B;        /* Deep Navy */
    --background-color: #FFF9F0;  /* Off White */
}

/* ================= GLOBAL ================= */
body{
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

/* ================= HEADER & NAVBAR ================= */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo h1{
    color: var(--primary-color);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.logo span{
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.85;
}

/* Navigation */
.navlink{
    list-style: none;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.navlink a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navlink a:hover{
    background-color: rgba(255,159,28,0.25);
}

/* ================= MAIN OFFSET ================= */
main{
    padding-top: 70px;
}

/* ================= HERO SECTION ================= */
.hero{
    min-height: calc(100vh - 70px);
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("https://dynamic-media-cdn.tripadvisor.com/media/photo-o/10/62/7d/40/restaurant-interior.jpg?h=500&s=1&w=900")
        center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-content h2{
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.hero-content p{
    font-size: clamp(1rem, 3vw, 1.4rem);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.hero-btns{
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn{
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Primary Button */
.menu-btn,
.reservation-btn{
    background-color: var(--primary-color);
    color: var(--text-color);
}

.menu-btn:hover,
.reservation-btn:hover{
    background-color: #e88f18;
    transform: translateY(-2px);
}

/* Secondary Button */
.contact-btn{
    border: 2px solid var(--primary-color);
    color: #fff;
}

.contact-btn:hover{
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* ================= MENU SECTION ================= */
.menu{
    padding: 4rem 5vw;
    background-color: #FFF3E0;
}

.menu h2{
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.menu-para{
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
}

.menu h3{
    margin-top: 2rem;
    color: var(--secondary-color);
}

.menu-items{
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.items{
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.items:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.item-info h4{
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
}

.item-info p{
    color: #777;
}

.price{
    font-weight: bold;
    color: var(--accent-color);
}

/* ================= ABOUT SECTION ================= */
.about{
    padding: 4rem 0;
}

.about-section h2{
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 5vw;
    align-items: center;
}

.left img{
    width: 100%;
    border-radius: 8px;
}

/* ================= CONTACT SECTION ================= */
.contact{
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.contact-section h2{
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 5vw;
}

.form-group label{
    display: block;
    margin-top: 1rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea{
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color: var(--primary-color);
    outline: none;
}
.reservation-btn{
    margin-top: 1.5rem;
    padding: 12px 28px;
    background-color: var(--primary-color); /* Marigold */
    color: var(--text-color);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-btn:hover{
    background-color: #e88f18; /* darker marigold */
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* ================= FOOTER ================= */
footer{
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4{
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li{
    color: #ddd;
    margin-bottom: 0.5rem;
}

.footer-section ul{
    list-style: none;
}

.footer-section a{
    color: #ccc;
    text-decoration: none;
}

.footer-section a:not(.social-link):hover{
    color: var(--primary-color);
}


.social-links{
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link{
    padding: 10px 18px;
    background-color: rgba(255,255,255,0.12);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
}

.social-link:hover{
    background-color: var(--primary-color); /* Marigold */
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}


.footer-bottom{
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
    .navbar{
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-content,
    .contact-content{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns{
        flex-direction: column;
    }

    .btn{
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

@media (max-width: 480px){
    body{
        font-size: 14px;
    }

    .items{
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
