*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header{
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.logo tagline{
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 2rem;
} 

.nav-links a{
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover{
    background-color: rgba(255, 255, 255, 0.1);
}

.hero{
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://wallpaperaccess.com/full/3692991.jpg') center/cover;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content{
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-content p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons{
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: small;
}

.btn{
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary{
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover{
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary{
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover{
    background-color: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.menu{
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.section-subtitle{
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.menu-category{
    margin-bottom: 3rem;
}

.menu-category h3{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
    
}

.menu-items{
    display: grid;
    gap: 1.5rem;
}

.menu-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover{
    transform: translateY(-3px);
}

.menu-item-info h4{
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.menu-item-info p{
    line-height: 1.4;
    color: #666;
}

.price{
    font-size: 1.1rem;
    font-weight: bold;
    color: #e74c3c;
    margin-left: 1rem;
}

.about{
    padding: 5rem 0;
    background-color: white;
}

.about-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50
}

.about-text p{
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.about-image img{
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact{
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 , .contact-form h3{
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-item{
    margin-bottom: 1rem;
}

.contact-item-strong{
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group{
    margin-bottom: 1.5rem;
}

.form-group label{
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: #e74c3c;
    outline: none;
}

:root{
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #666;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

.btn-primary{
    background-color: var(--primary-color);
    color: white;
    transition: var(--transition);
}

.section-title{
    color: var(--secondary-color);
}

.menu-item{
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}


@media (max-width: 768px){
    .hero-content h2{
        font-size: 2.5rem;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }

    .btn{
        width: 80%;
        text-align: center;
    }

    .about-content, .contact-content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .navbar{
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links{
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;       /* smaller padding */
    }

    .logo h1 {
        font-size: 1.5rem;       /* smaller logo text */
    }

    .logo .tagline {
        font-size: 0.7rem;       /* smaller tagline */
    }

    .nav-links {
        gap: 0.3rem;             /* reduce spacing between links */
    }

    .nav-links a {
        padding: 0.3rem 0.6rem;  /* smaller buttons */
        font-size: 0.85rem;      /* smaller font */
    }

    .hero {
        margin-top: 60px;        /* adjust margin to match smaller header */
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.hero-content {
    animation: fadeInUp 0.5s ease-out;
}

.menu-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.menu-item:nth-child(1) {animation-delay: 0.1s;}
.menu-item:nth-child(2) {animation-delay: 0.2s;}
.menu-item:nth-child(3) {animation-delay: 0.3s;}

.about-image{
    animation: fadeInUp 0.8s ease-out;
}

.section-title{
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.animate{
    opacity: 1;
    transform: translateY(0);
}

.footer{
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 , .footer-section h4{
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul li{
    margin-bottom: 0.5rem;
}

.footer-section a{
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links{
    display: flex;
    gap: 1rem;
}

.social-link{
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
}

.social-link:hover{
    background-color: black;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom{
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-top: 1rem;
}   

.menu-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 0 10px;
}

.menu-filter::-webkit-scrollbar {
    height: 6px;
}

.menu-filter::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}

.menu-filter::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 25px;
    background-color: #eee;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;       /* slightly larger for emphasis */
    color: var(--primary-color); /* use your brand color */
    font-style: italic;       /* elegant italic style */
    letter-spacing: 1px;     /* subtle spacing for readability */
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Animate subtitle when menu section comes into view */
.section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}
