/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #000000;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c1121f;
}

.btn-small {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #c1121f;
}

/* Header */
header {
    background-color: #111;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: relative;
}

.logo h1 {
    color: #e63946;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 0.8rem;
    border: none;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    border: none;
}

nav ul li a:hover,
nav ul li a.active {
    color: #e63946;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #e63946;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border: none;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1505253758473-96b7015fcd40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-highlight {
    background-color: #e63946;
}

.btn-highlight:hover {
    background-color: #c1121f;
}

/* Animation for Hero Subtitle */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes colorChange {
    0% {
        color: white;
    }
    25% {
        color: #f9a825;
    }
    50% {
        color: #e63946;
    }
    75% {
        color: #f9a825;
    }
    100% {
        color: white;
    }
}

.animated-subtitle {
    animation: fadeInUp 1.5s ease-out, colorChange 8s infinite;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Featured Section */
.featured {
    padding: 5rem 5%;
    text-align: center;
    background-color: #000000;
}

.featured h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.featured h2::after {
    content: '';
    position: absolute;
    left: 35%;
    bottom: 0;
    width: 30%;
    height: 2px;
    background-color: #e63946;
}

.dishes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.dish {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.dish:hover {
    transform: translateY(-10px);
}

.dish img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.dish h3 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.dish p {
    padding: 0 1rem 1.5rem;
    color: #ffffff;
    text-align: center;
}

.dish .btn-small {
    margin: 0 auto;
    display: block;
    width: fit-content;
    background-color: #e63946;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.dish .btn-small:hover {
    background-color: #c1121f;
}

/* Mission Section with Image - Perfectly Centered */
.mission {
    padding: 5rem 0;
    background-color: #000000;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-align: center;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e63946;
    transform: translateX(-50%);
}

.mission-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
    text-align: center;
}

.mission-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.mission-list li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #f0f0f0;
}

.mission-list li i {
    color: #e63946;
    margin-right: 15px;
    font-size: 1.3rem;
}

.mission-image {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.mission-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: inline-block;
}

.mission-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mission-content, .mission-image {
        width: 100%;
    }
    
    .mission-image {
        margin-top: 2rem;
        padding: 0 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #000000;
    padding: 5rem 5%;
    text-align: center;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    left: 25%;
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: #e63946;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: #f9a825;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
    text-align: right;
}

/* About Section */
.about {
    background-color: #000000;
    padding: 5rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #000000;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.contact-info, .hours, .social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.contact-info h3, .hours h3, .social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-info p, .hours p {
    margin-bottom: 0.8rem;
}

.contact-info i {
    margin-right: 10px;
}

.social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social a:hover {
    color: #e63946;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        position: relative;
        background-color: #000;
    }
    
    .logo {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        background-color: #000;
        padding: 0;
        margin: 0;
        border: none;
    }
    
    nav ul li {
        margin: 0.3rem;
        border: none;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
        text-align: center;
        display: block;
        border: none;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        border: none;
    }
    
    nav ul li {
        width: 100%;
        margin: 0.2rem 0;
        border: none;
        border-bottom: none;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        width: 100%;
        padding: 10px 0;
        border: none;
        border-bottom: none;
    }
    
    nav ul li a.active {
        border: none;
        background-color: #e63946;
        color: white;
        border-radius: 4px;
    }
}

/* Specialties Page Styles */
.specialties-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1567188040759-fb8a883dc6d8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Contact Page Header */
.contact-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.specialty-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem 8%;
    gap: 3rem;
    background-color: #000000;
}

.specialty-item:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #000000;
}

.specialty-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.specialty-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.specialty-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e63946;
}

.specialty-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #ffffff;
}

.specialty-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
}

.specialty-content ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
    color: #ffffff;
}

.specialty-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #ffffff;
}

.specialty-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
}

.specialty-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.specialty-image img:hover {
    transform: scale(1.02);
}

/* Responsive design for specialty items */
@media (max-width: 900px) {
    .specialty-item, 
    .specialty-item:nth-child(even) {
        flex-direction: column;
        padding: 2rem 5%;
    }
    
    .specialty-content {
        text-align: center;
        max-width: 100%;
    }
    
    .specialty-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .specialty-content ul {
        text-align: left;
        display: inline-block;
    }
}

/* Contact Page Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 5%;
    gap: 2rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

textarea {
    height: 150px;
    resize: vertical;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
    background-color: #000000;
    padding: 2rem;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-detail i {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    color: #e63946;
    margin-top: 3px;
    width: 30px;
    text-align: center;
}

.contact-detail h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-detail p {
    color: #ffffff;
    line-height: 1.5;
}

.map {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
}

/* Menu Page Styles - No Boxes */
.menu-section {
    padding: 5rem 5%;
    background-color: #000000;
}

.menu-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.menu-category {
    margin-bottom: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.menu-item {
    background-color: transparent;
    border-radius: 8px;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 1rem;
    border: none;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: transparent;
    padding: 0;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.menu-item img:hover {
    transform: scale(0.95);
}

.menu-item-content {
    padding: 1.5rem 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0.5rem;
    position: relative;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
}

.menu-item-price {
    color: #e63946;
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.menu-item:hover .menu-item-price {
    transform: scale(1.1);
    color: #ff5a67;
}

.price-tag {
    margin-right: 5px;
    color: #e63946;
    animation: pulse 1.5s infinite;
}

.best-value {
    font-size: 0.8rem;
    background-color: #e63946;
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    margin-left: 5px;
    display: inline-block;
    animation: flash 1.5s infinite;
    vertical-align: middle;
    font-weight: bold;
    text-transform: uppercase;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e63946;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    40% {
        transform: translateY(-10px) rotate(5deg);
    }
    60% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.discount-ribbon {
    position: absolute;
    top: 20px;
    left: -10px;
    background-color: #e63946;
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10;
}

.discount-ribbon::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid #9e1a25;
    border-left: 10px solid transparent;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2rem;
    margin-right: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.menu-item-description {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    height: auto;
    overflow: visible;
    text-overflow: initial;
    font-size: 0.95rem;
    letter-spacing: 0.01rem;
    border: none;
}

.menu-item-button {
    display: inline-block;
    background-color: #e63946;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.menu-item-button:hover {
    background-color: #c1121f;
    transform: scale(1.05);
}

.button-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    width: 100%;
    padding: 10px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    position: relative;
}

.button-price-container:hover .menu-item-price {
    transform: scale(1.1);
    color: #ff5a67;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeIn 0.5s ease-out forwards;
}

.menu-items .menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-items .menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-items .menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-items .menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-items .menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-items .menu-item:nth-child(6) { animation-delay: 0.6s; }

/* Gallery Page Styles */
.gallery-container {
    padding: 5rem 5%;
}

.gallery-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    margin-bottom: 0.5rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #e63946;
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

/* Landscape Image Style */
.landscape-img {
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #f9f5f0;
    padding: 0;
    transition: transform 0.3s ease;
    max-height: 200px;
}

/* Special Dish Style for Chowed Buns */
.dish-special {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .specialty-item {
        flex-direction: column;
    }
    
    .specialty-content, .specialty-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .menu-item {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info, .hours, .social {
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form, .contact-info-section {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .dishes {
        flex-direction: column;
        align-items: center;
    }
    
    .dish {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .menu-category h3 {
        font-size: 1.5rem;
    }
    
    .menu-item-title {
        font-size: 1.1rem;
    }
    
    .menu-item-description {
        font-size: 0.85rem;
    }
    
    .menu-item-button {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-detail i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .map iframe {
        height: 200px;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Form Elements */
input, textarea, button {
    max-width: 100%;
}

/* Responsive Map */
.map iframe {
    max-width: 100%;
    height: 300px;
}

@media (max-width: 480px) {
    .map iframe {
        height: 200px;
    }
}

/* Mobile Navigation - Always Visible */
.mobile-nav-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        position: relative;
        background-color: #000;
    }
    
    .logo {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        background-color: #000;
        padding: 0;
        margin: 0;
    }
    
    nav ul li {
        margin: 0.3rem;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        border: none;
    }
    
    nav ul li {
        width: 100%;
        margin: 0.2rem 0;
        border: none;
        border-bottom: none;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        width: 100%;
        padding: 10px 0;
        border: none;
        border-bottom: none;
    }
    
    nav ul li a.active {
        border: none;
        background-color: #e63946;
        color: white;
        border-radius: 4px;
    }
}

/* Gallery Responsive Styles */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item-overlay h3 {
        font-size: 1.2rem;
    }
    
    .gallery-item-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Specialty Page Responsive Styles */
@media (max-width: 768px) {
    .specialty-item {
        flex-direction: column;
        margin: 2rem 0;
    }
    
    .specialty-content, .specialty-image {
        width: 100%;
    }
    
    .specialty-image {
        margin-top: 1.5rem;
        height: 250px;
    }
    
    .specialty-content h2 {
        font-size: 1.8rem;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 3px;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    header {
        flex-direction: row;
        padding: 1rem;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 0;
        text-align: left;
    }
    
    nav {
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        padding: 0;
        margin: 0;
        border: none;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
    }
    
    nav ul li a {
        padding: 15px;
        width: 100%;
        display: block;
        text-align: center;
        border: none;
    }
}

.biryani-image {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.biryani-image img {
    background-color: #000000;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    padding: 10px;
    border-radius: 8px;
}

.chowed-buns-image {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: none;
}

.chowed-buns-image img {
    background-color: transparent;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
}

.butter-chicken-image {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: none;
}

.butter-chicken-image img {
    background-color: transparent;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 5%;
    background-color: #000000;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e63946;
    transform: translateX(-50%);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-card {
    background-color: rgba(17, 17, 17, 0.7);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.faq-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e63946;
    transition: width 0.3s ease;
}

.faq-card:hover::after {
    width: 100%;
}

.faq-card h3 {
    color: #e63946;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.faq-card:hover h3 {
    animation: pulse 1s ease infinite;
}

.faq-card p {
    color: #f0f0f0;
    line-height: 1.6;
}

.faq-card:nth-child(1) { animation-delay: 0.1s; }
.faq-card:nth-child(2) { animation-delay: 0.2s; }
.faq-card:nth-child(3) { animation-delay: 0.3s; }
.faq-card:nth-child(4) { animation-delay: 0.4s; }
.faq-card:nth-child(5) { animation-delay: 0.5s; }
.faq-card:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 1200px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
}

/* Enhanced Animation for FAQ Cards */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
} 