/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background-color: #333;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.6);
}

/* Slideshow Controls */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Indicator */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.learn-more-container {
    margin-top: 2rem;
    text-align: left;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* Menu Preview Section */
.menu-preview {
    padding: 80px 0;
    background: #333;
    overflow: hidden;
}

.menu-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.menu-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.menu-cards-container {
    overflow: hidden;
    position: relative;
}

.menu-cards-wrapper {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 2rem;
    width: fit-content;
}

.menu-card {
    flex: 0 0 300px;
    background: #333;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #555;
}


.menu-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 1.5rem;
    text-align: center;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.menu-card-content p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.menu-card-content .price {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #333;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #333;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #555;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #111;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #f7931e;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #333;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 20px 0;
    background: #333;
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-8px) rotateY(10deg) scale(1.05);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-item i {
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: rotate(360deg) scale(1.2);
    color: #ffd700;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item:hover h3 {
    color: #ffd700;
    transform: translateX(5px);
}

.contact-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-item:hover p {
    opacity: 1;
    transform: translateX(5px);
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

/* Gallery Header */
.gallery-header {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/39.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
}

.gallery-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.gallery-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.gallery-hero-text p {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #ff6b35;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Menu Header */
.menu-header {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
}

.menu-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.menu-hero-text p {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Menu Section */
.menu {
    padding: 60px 0;
    background: #333;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.menu-category-card {
    background: #333;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    border: 1px solid #555;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow-y: auto;
}

.menu-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.2);
    border-color: #ff6b35;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #ff6b35;
    position: relative;
}

.category-header i {
    color: #ff6b35;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    max-height: 350px;
    overflow-y: auto;
    flex: 1;
}

.menu-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #333;
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transition: left 0.5s ease;
}

.menu-item-card:hover::before {
    left: 100%;
}

.menu-item-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.2);
    border-left-color: #f7931e;
}

.menu-item-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    flex: 1;
    padding-right: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-card .price {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6b35;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Special styling for family meals */
.special-card {
    grid-column: span 2;
    height: 100%;
}

.special-item {
    background: #333;
    border-left-color: #ff6b35;
}

.special-item h3 {
    color: #fff;
}

.special-item .price {
    color: #ff6b35;
}

/* Responsive adjustments for special cards */
@media (max-width: 900px) {
    .special-card {
        grid-column: span 1;
    }
}

/* About Header */
.about-header {
    height: 60vh;
    background-image: url('images/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.about-hero-text {
    text-align: center;
    color: white;
    z-index: 2;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
    word-wrap: break-word;
    max-width: 100%;
}

.about-hero-text p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* About Main Section */
.about-main {
    padding: 80px 0;
    background: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-image iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.standards-section {
    margin-top: 2rem;
    padding: 0;
}

.standards-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.standards-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.standards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standards-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #ccc;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 2rem;
}

.standards-list li:last-child {
    border-bottom: none;
}

.standards-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image:hover iframe {
    transform: scale(1.05);
}

/* Quality Ingredients Section */
.quality-ingredients {
    padding: 80px 0;
    background: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.ingredients-category {
    margin-bottom: 4rem;
}

.ingredients-category .category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ff6b35;
    position: relative;
}

.ingredients-category .category-title i {
    color: #ff6b35;
    font-size: 1.8rem;
}

.ingredients-category .category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ingredient-item {
    background: #333;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    border: 1px solid #555;
    text-align: center;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    border-color: #ff6b35;
}

.ingredient-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.ingredient-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.ingredient-info p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* Contact Header */
.contact-header {
    position: relative;
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/71.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
}

.contact-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.contact-hero-text p {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.typing-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 600;
    text-shadow: none;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: none;
}

.about-text-black {
    color: #fff;
    font-weight: 600;
}

.blur-text {
    filter: blur(3px);
    transition: filter 0.5s ease;
}

.blur-text.typing-complete {
    filter: blur(0px);
}

@keyframes shinyText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


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

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #333;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    width: 30px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

.contact-item p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f7931e;
}

/* Contact Form */
.contact-form {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #555;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #222;
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Social Media Buttons */
.social-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.dial-btn {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .menu-preview h2 {
        font-size: 2rem;
    }
    
    .menu-card {
        flex: 0 0 250px;
    }
    
    .menu-card-content {
        padding: 1rem;
    }
    
    .menu-card-content h3 {
        font-size: 1.3rem;
    }
    
    .view-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .learn-more-container {
        text-align: center;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .faq h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .prev, .next {
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.8rem;
        max-width: 400px;
    }
    
    .contact-item {
        padding: 0.6rem;
        width: 100%;
    }
    
    /* Menu responsive styles for tablets */
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .menu-category-card {
        padding: 1rem;
        max-height: 400px;
        height: 100%;
    }
    
    .category-header h2 {
        font-size: 1.2rem;
    }
    
    .category-image {
        width: 40px;
        height: 40px;
    }
    
    .menu-items-grid {
        max-height: 300px;
    }
    
    .menu-item-card {
        padding: 0.7rem;
        min-height: 45px;
    }
    
    .menu-item-card h3 {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .menu-item-card .price {
        font-size: 0.95rem;
    }
    
    /* About page responsive styles for tablets */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .about-image iframe {
        height: 350px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    /* Contact page responsive styles for tablets */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 1.8rem;
    }
    
    .contact-header {
        height: 80vh;
        background-attachment: scroll;
    }
    
    .contact-hero-text h1 {
        font-size: 3rem;
    }
    
    .contact-hero-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .menu-preview h2 {
        font-size: 1.8rem;
    }
    
    .menu-card {
        flex: 0 0 200px;
    }
    
    .menu-card-content h3 {
        font-size: 1.2rem;
    }
    
    .menu-card-content p {
        font-size: 0.9rem;
    }
    
    .view-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .learn-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .about-hero-text p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .standards-section {
        padding: 0;
    }
    
    .standards-section h3 {
        font-size: 1.5rem;
    }
    
    .standards-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .gallery-header {
        height: 80vh;
        background-attachment: scroll;
    }
    
    .gallery-hero-text h1 {
        font-size: 3rem;
    }
    
    .gallery-hero-text p {
        font-size: 1.2rem;
    }
    
    .contact-header {
        height: 70vh;
    }
    
    .contact-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-text p {
        font-size: 1.1rem;
    }
    
    .gallery-header {
        height: 70vh;
    }
    
    .gallery-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .gallery-hero-text p {
        font-size: 1.1rem;
    }
    
    /* Menu responsive styles */
    .menu-header {
        height: 80vh;
        background-attachment: scroll;
    }
    
    .menu-hero-text h1 {
        font-size: 3rem;
    }
    
    .menu-hero-text p {
        font-size: 1.2rem;
    }
    
    .menu-header {
        height: 70vh;
    }
    
    .menu-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .menu-hero-text p {
        font-size: 1.1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .menu-category-card {
        padding: 1rem;
        max-height: 350px;
        height: 100%;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .category-header h2 {
        font-size: 1.3rem;
    }
    
    .category-image {
        width: 35px;
        height: 35px;
    }
    
    .menu-items-grid {
        max-height: 250px;
    }
    
    .menu-item-card {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        padding: 0.8rem;
        min-height: 40px;
    }
    
    .menu-item-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        padding-right: 0;
        -webkit-line-clamp: 2;
    }
    
    .menu-item-card .price {
        font-size: 1rem;
    }
    
    /* About page responsive styles */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-image iframe {
        height: 300px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .ingredient-item {
        padding: 1.2rem;
    }
    
    .ingredient-image {
        height: 150px;
    }
    
    /* Contact page responsive styles */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .social-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
