/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #f7f6f3;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff4500;
    border: 2px solid #ff4500;
}

.btn-secondary:hover {
    background: #ff4500;
    color: white;
    transform: translateY(-2px);
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    color: #111;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 69, 0, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #111;
}

.nav-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-links a {
    color: #777;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff4500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4500;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #b0b0b0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ca4b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 400px;
    height: 300px;
    z-index: 1;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== MEALS SECTION ===== */
.meals {
    padding: 5rem 0;
    background: #f8f6f1;
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.meal-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 69, 0, 0.12);
}

.meal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.2);
}

.meal-image {
    height: 200px;
    overflow: hidden;
}

.meal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.meal-card:hover .meal-image img {
    transform: scale(1.1);
}

.meal-content {
    padding: 1.5rem;
    color: #111;
}

.meal-content h3 {
    color: #ff4500;
    margin-bottom: 0.5rem;
}

.meal-content p {
    color: #555;
}

.meal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: #111;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    margin-left: 0;
    margin-right: auto;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 5rem 0;
    background: #f7f6f3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 69, 0, 0.12);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #111;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 5rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background: #111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials {
    padding: 5rem 0;
    background: #f8f6f1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.12);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.2);
}

.testimonial-rating {
    color: #ff4500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #111;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #111;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #ff4500;
}

.contact-details p {
    color: #555;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: #111;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 69, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
}

.footer p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff4500;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-links a {
        background: rgba(220, 220, 220, 0.12);
        box-shadow: 0 0 16px rgba(180, 180, 180, 0.35);
    }

    .social-links a:hover {
        background: rgba(255, 255, 255, 0.18);
        box-shadow: 0 0 24px rgba(200, 200, 200, 0.55);
    }
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* ===== PROMOTIONAL JINJA SECTION ===== */
.promo-section {
    background: linear-gradient(180deg, #e8fff1 0%, #ffffff 100%);
    padding: 3rem 0;
    border-radius: 12px;
    margin: 2rem 0;
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.promo-media { position: relative; }
.promo-images { display: flex; gap: 1rem; align-items: center; justify-content: center; }
.promo-image { flex: 1; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.6); box-shadow: 0 8px 30px rgba(15,123,50,0.08); padding: 0.5rem; }
.promo-image img { display: block; width: 100%; height: auto; object-fit: cover; border-radius: 10px; }
.promo-image.main { transform: translateY(-6px); }
.promo-image.side { width: 45%; max-width: 200px; }
.promo-image.side-2 { width: 35%; max-width: 160px; }
.leaf-decor { position: absolute; width: 80px; height: 80px; background: radial-gradient(circle at 30% 30%, rgba(56,182,107,0.35), transparent 40%); border-radius: 50%; filter: blur(6px); }
.leaf-1 { left: -20px; top: -10px; transform: rotate(-20deg); }
.leaf-2 { right: -20px; bottom: -10px; transform: rotate(10deg); }
.promo-content .badge { display: inline-block; background: rgba(15,123,50,0.12); color: #0f7b32; padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; }
.promo-title { font-size: 2rem; margin: 0.6rem 0; color: #0f7b32; }
.promo-text { color: #27472b; margin-bottom: 1rem; }
.promo-head { margin-bottom: 0.45rem; transform: translateY(-6px); }
.other-product { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.95); padding: 6px 10px; border-radius: 12px; box-shadow: 0 6px 20px rgba(15,123,50,0.06); }
.other-product img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.other-product .small-label { font-size: 0.75rem; color: #0f7b32; opacity: 0.95; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.other-product .name { font-size: 0.98rem; color: #0f7b32; font-weight: 800; line-height: 1; }

/* Contact-area OTHER PRODUCT link */
.other-product-contact { margin-top: 0.8rem; }
.other-product-cta { display: inline-block; padding: 0.45rem 0.9rem; border-radius: 8px; border: 1px solid rgba(15,123,50,0.14); color: #0f7b32; background: rgba(232,255,241,0.9); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.other-product-cta:hover { box-shadow: 0 8px 20px rgba(15,123,50,0.06); transform: translateY(-2px); }
.promo-features { list-style: none; padding: 0; margin: 0 0 1.2rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; color: #27472b; }
.promo-features li::before { content: '•'; color: #38b66b; margin-right: 0.6rem; }
.promo-actions { display: flex; gap: 1rem; align-items: center; }
.promo-actions .btn { padding: 0.8rem 1.2rem; border-radius: 10px; }
.promo-actions .btn-primary { background: linear-gradient(90deg,#0f7b32,#38b66b); color: white; }
.promo-actions .btn-secondary { background: transparent; border: 1px solid rgba(15,123,50,0.12); color: #0f7b32; }

/* Modal */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.28s ease; }
.modal.active .modal-overlay { opacity: 1; }
.modal-panel { position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(232,255,241,0.96)); border-radius: 12px; padding: 2rem; width: 90%; max-width: 600px; box-shadow: 0 12px 40px rgba(15,123,50,0.12); transform: translateY(20px); opacity: 0; transition: transform 0.32s ease, opacity 0.32s ease; }
.modal.active .modal-panel { transform: translateY(0); opacity: 1; }
.modal-close { position: absolute; right: 12px; top: 8px; background: transparent; border: none; font-size: 1.6rem; color: #27472b; cursor: pointer; }

/* Entrance reveal tweak for promo */
.promo-section.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.promo-section.active, .promo-section.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-images { flex-direction: row; gap: 0.6rem; }
    .promo-image.side, .promo-image.side-2 { display: none; }
    .promo-title { font-size: 1.6rem; }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-images { justify-content: flex-start; gap: 0.8rem; }
    .promo-image.side, .promo-image.side-2 { display: none; }
    .promo-head { transform: none; margin-bottom: 0.6rem; }
    .other-product { width: 100%; justify-content: flex-start; }
}

/* Small screens tweaks: ensure OTHER PRODUCT shows clearly */
@media (max-width: 768px) {
    .promo-head { transform: none; margin-bottom: 0.5rem; display: flex; justify-content: center; }
    .other-product { width: auto; padding: 6px 8px; }
    .other-product img { width: 48px; height: 48px; }
    .other-product .small-label { font-size: 0.7rem; }
    .other-product .name { font-size: 0.9rem; }
    .promo-actions { flex-direction: column; gap: 0.6rem; align-items: stretch; }
    .promo-actions .btn { width: 100%; }
    .other-product-contact { text-align: center; margin-top: 0.6rem; }
}