*{
    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;

}

/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger icon */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Nav styling */
.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);
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background-color: #2c3e50;
    width: 200px;
    height: 100vh;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-toggle:checked ~ .nav-links {
    right: 0;
  }
}



.logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.9rem;
    color: #bdc3c7;
}


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('restaurant.avif') center/cover;
    margin-top: 80px;            
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-content h2 {
    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;

}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.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: #9b7cff;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
}
.menu {
    padding: 5rem 0;
    background-color: #f8f9fa ;
    
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;

}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem ;
    color: #666;
    margin-bottom: 3rem;

}
.mwnu-category {
    margin-bottom: 3rem;

}

.menu-category h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 5px 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;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translate(-3px);
}

.menu-item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;

}

.mune-item-info p {
    color: #666;
    line-height: 1.4;
} 

.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 {
   width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius: 10px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
}

.contact {
    padding: 5rem 0;
    background-color: #f8f9fa;

}

.contact-content {
    display: grid;
    grid-template-columns: 1fe 1fr ;
    gap: 3rem;
}

.contact-info h3 , .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.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;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}


.form-group input:focus ,
.form-group select:focus ,
.form-group textarea:focus {

    outline: none;
    border-color: #e74c3c;

}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e2c;
    --accent-color: #3498db;
    --light-bg: #f8f8f8;
    --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 {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@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){
    .hero-content h2 {
        font-size: 2rem;

    }
    .container {
        padding: 0 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50x);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.menu-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.menu-item:ntn-child(1) {animation-delay: 0.1s;}
.menu-item:ntn-child(2) {animation-delay: 0.2s;}
.menu-item:ntn-child(3) {animation-delay: 0.3s;}


.about-image {
    animation: fadeInUp 0.8 ease-out 0.3s both;
}

.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

:root {
    --primary-color: #e67e22; /* Customize as needed */
    --transition: all 0.3s ease;
}

.footer {
    background-color: #2c3e50;
    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 {
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ecf0f1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.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);
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
    color: #bdc3c7;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #bdc3c7;
}
