.hero,
.navbar,
.navbar ul {
    display: flex
}

.navbar ul li a:hover,
.section h2 {
    color: #d4a373;
}

.hero,
.navbar,
footer {
    color: #fff;
}

.hero,
.section,
footer {
    text-align: center
}

.section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #b07d4d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #fff;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Preloader Fullscreen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
}

/* Food Emoji Loader */
.food-loader {
    font-size: 80px;
    /* bada emoji */
    color: #b07d4d;
    animation: spin 1.5s linear infinite;
}

/* spin Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Body content initially hidden with opacity */
body.loading {
    overflow: hidden;
    /* prevent scroll */
}

body.loading>*:not(#preloader) {
    opacity: 0;
    pointer-events: none;
}

body.loaded>* {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

/* BreadCrumb */

.breadcrumb {
    margin: 10px 10px;
    font-size: 14px;
    color: #555;
}

.breadcrumb a {
    text-decoration: none;
    color: #b07d4d;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
}

/* Navbar.. */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 1s ease;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-top: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.hamburger {
    display: none;
    font-size: 40px;
    cursor: pointer;
}

/* Navbar Responsive Design*/
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        background: #111;
        width: 200px;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        transition: right 0.3s ease-in-out;
    }

    .nav-links li a:hover {
        color: #d4a373;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: url('/Assets/images/BGimage.jpg') center/cover no-repeat;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero h1 {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    font-family: 'Abril Fatface', cursive;
    margin-bottom: 10px;
    padding: 0 8%;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s linear;
    will-change: transform;

}

.hero p {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
}

.hero a {
    text-decoration: none;
}

.text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 12px 30px;
    margin-top: 15PX;
    background: #d4a373;
    color: #333;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.5s all ease;
}

.btn:hover {
    background: #b07d4d;
    color: #fff;
}

.hero-line {
    width: 100%;
    height: 3px;
    background: #d4a373;
    border: none;
    border-radius: 5px;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.5rem;
    }
}

/*  Home Page About Section*/
#about {
    padding: 60px 10%;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-top: 50px;
}

.about-img {
    text-align: center;
}

.about-img img {
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-img img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #b07d4d;
    margin-bottom: 20px;
    position: relative;
}


.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-cta {
    margin-top: 20px;
}

.about-cta a {
    margin: 10px;
}

.btn-call,
.btn-more {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.4s ease;
}

.btn-call {
    background: #d4a373;
    color: #fff;
}

.btn-call:hover {
    background: #b07d4d
}

.btn-more {
    background: transparent;
    color: #b07d4d;
    border: 2px solid #d4a373;
}

.btn-more:hover {
    background: #d4a373;
    color: #fff;
}

/* WhatsApp Logo */
#whatsapp-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px;
    bottom: 200px;
    width: 60px;
    height: 60px;
    opacity: 0;
    /* by default hidden */
    pointer-events: none;
    background-color: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#whatsapp-btn.show {
    opacity: 1;
    pointer-events: auto;
}

#whatsapp-btn {
    color: white;
    font-size: 28px;
    transition: transform 0.3s ease;
}

#whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}


/* About Us  about.html*/
.aboutUs {
    background: url("/Assets/images/AboutusBackgroundImg.jpg") no-repeat center center/cover;
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;

}

.aboutUs h1 {
    font-size: 4rem;
    font-family: 'Abril Fatface', cursive;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.aboutUs h1:hover {
    transform: translateY(-5px);
    text-shadow: 4px 8px 12px rgba(0, 0, 0, 0.7);
}


.aboutUs p {
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.aboutUs p:hover {
    transform: translateY(-5px);
    text-shadow: 4px 8px 12px rgba(0, 0, 0, 0.7);
}

.about-content {
    display: flex;
    padding: 40px 8%;
    background: #fff;
    color: #333;
    margin-top: 100px;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

.about-content h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #b07d4d;
    text-align: center;
}

.about-content p,
.about-content ul,
.about-content li {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    text-align: center;
}

/* Two Column Layout */
.our-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.image img {
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1000px;
}

.card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.card-overlay h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
    color: #f9f9f9
}

.card-overlay p {
    font-size: 1.5rem;
    margin-top: 5px;
    color: #f9f9f9;
    font-weight: bold;
}

/*  founder and CEO section*/
#leadership {
    padding: 60px 20px;
    text-align: center;
}

.leadership-container h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #b07d4d;
}

.leaders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.leader-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid #b07d4d;
    margin-bottom: 15px;
}

.leader-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #222;
}

.leader-card .role {
    font-size: 1rem;
    color: #b07d4d;
    font-weight: bold;
    margin-bottom: 15px;
}

.leader-card .bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}



/* Responsive */
@media (max-width: 768px) {
    .aboutUs h1 {
        font-size: 3rem;
    }

    .our-story,
    .achievements {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Services Section */
#services {
    padding: 80px 4%;
}

.services-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
    /* thoda sa gap left/right */
}

.services-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    scroll-behavior: smooth;
    padding: 50px 5px;
    margin: 0 24px;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

/* Individual Cards */

.service-card {
    flex: 0 0 90%;
    max-width: 350px;
    min-width: 250px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #d4a373;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

.more-text {
    display: none;
    margin-top: 10px;
    color: #444;
}

.read-more {
    margin-top: 12px;
    padding: 8px 16px;
    border: none;
    background: #d4a373;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
}

.services-wrapper .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    font-size: 2rem;
    color: #c58d5c;
    /* apne theme ka color */
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
}

.arrow:hover {
    color: #b07d4d;
    transform: translateY(-50%) scale(1);
}

/* Left Arrow */
.arrow.left {
    left: 0;
}

/* Right Arrow */
.arrow.right {
    right: 0;
}

/* Responsive Service Section */

/* Tablet view */
@media (min-width: 768px) {
    .service-card {
        flex: 0 0 45%;
        /* 2 card ek row me */
        scroll-snap-align: start;
    }
}

.services-wrapper .arrow {
    font-size: 1.5rem;
    padding: 4px;
}

/* Desktop view */
@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 30%;
        /* 3 card ek row me */
        max-width: none;
    }
}

/* Why Choose Us */
#choose-us {
    padding: 60px 8%;
}

.choose-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #b07d4d;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.choose-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px #d4a37347;
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px #b07d4d;
}

.choose-card i {
    font-size: 40px;
    color: #d4a373;
    margin-bottom: 15px;
}

.choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.choose-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Why Choose Us for tablets and mobiles */
@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards per row */
    }
}

@media (max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
        /* single column on mobile */
    }
}



/* Contact Section - Clean White */
.contact-section {
    background: #ffffff;
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid: form + info */
.contact-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

/* Card base */
.contact-card {
    padding: 22px;
    margin: auto;
}

/* Form card specifics */
.form-card h2 {
    margin: 10px 0;
    font-size: 2rem;
    text-transform: uppercase;
    color: #b07d4d;
}

.muted {
    color: #1e1e1e;
    margin-bottom: 18px;
}

/* Inputs */
.form-row {
    margin-bottom: 12px;
    margin-top: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 0.96rem;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #b07d4d;
    /* subtle accent (orange) */
    box-shadow: 0 4px 12px rgba(217, 115, 0, 0.08);
}

/* Buttons */
.form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-primary {
    background: #d4a373;
    color: #fff;
    border: 0;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.5s all ease;
}

.btn-primary:hover {
    background-color: #b07d4d;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #e6e6e6;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

/* Info card specifics */
.info-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #b07d4d;
}

.info-row {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-row strong {
    color: #1e1e1e;
}

.info-row a {
    color: #555;
    text-decoration: none;
    transition: 0.5s all ease;
}

.info-row a:hover {
    color: #b07d4d;
    font-weight: 600;
}

/* Social links */
.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    font-size: 25px;
    color: #555;
    transition: 0.3s;
}

.map-placeholder {
    margin-top: 14px;
    height: 140px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f5f5f7, #f0f0f3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Message text */
.form-msg {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #065f46;
    /* success color */
}

/* Accessibility helpers */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .contact-section {
        padding: 36px 16px;
    }

    .contact-card {
        padding: 16px;
    }

    .map-placeholder {
        height: 120px;
    }
}

/* ContactUs.html */

.contact-hero {
    position: relative;
    background: url('/Assets/images/ContactUsBackgroundImg.jpg') no-repeat center center/cover;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 4rem;
    font-family: 'Abril Fatface', cursive;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.contact-hero h1:hover {
    transform: translateY(-5px);
    text-shadow: 4px 8px 12px rgba(0, 0, 0, 0.7);
}


.contact-hero p {
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.contact-hero p:hover {
    transform: translateY(-5px);
    text-shadow: 4px 8px 12px rgba(0, 0, 0, 0.7);
}



/* Testimonials */
.testimonial-section {
    background: #f3e0cc61;
    padding: 70px 20px;
    text-align: center;
    padding-bottom: 100px;
}

.testimonial-section .sub-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-section .main-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #b07d4d;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-box {
    background: #f3e0cc61;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.002);
    position: relative;
}

.review {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
}

.quote {
    font-size: 1.5rem;
    color: #b07d4d;
    font-weight: bold;
}

.author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b07d4d;
}

.location {
    font-size: 0.9rem;
    color: #1e1e1e;
}


/* Footer */
.footer {
    position: relative;
    background: url(/Assets/images/FooterBackgroundImg.jpg);
    color: #eee;
    padding: 20px 20px;
    padding-top: 40px;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* yahan opacity control */
    z-index: 1;
}


.footer-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1100px;
    z-index: 2;
    margin: auto;
}


.footer h3,
.footer h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer p,
.footer a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-col p {
    padding: 4px 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 8px 0;
}

.footer ul li a:hover {
    color: #d4a373;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    font-size: 18px;
    color: #ccc;
    transition: 0.3s;
}

.social-links a:hover {
    color: #d4a373;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin-top: 10px;
}

.footer-bottom span {
    color: #d4a373;
    font-weight: bold;
    font-size: 16px;
}


/* 📱 Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        padding: 8px 8px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}


/* Blog Section */
.blog-container {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 40px;
}

.blog-timeline {
    width: 30%;
    border-right: 2px solid #ddd;
    padding-right: 20px;
}

.blog-timeline ul {
    list-style: none;
    padding: 0;
}

.blog-timeline li {
    padding: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-timeline li.active {
    background: #f3f4f6;
    font-weight: bold;
    border-left: 4px solid #c58d5c;
}

.blog-content {
    width: 70%;
    padding: 15px 15px;
    line-height: 1.8;
}

.blog-content h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    text-transform: uppercase;
    color: #b07d4d;
}

.blog-content h3 {
    color: #111;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-content p {
    margin-bottom: 8px;
    font-size: 18px;
}

.blog-content span {
    font-weight: bold;
    font-style: italic;
}

.blog-content ul li {
    margin-bottom: 8px;
    margin-left: 25px;
}

.blog-post {
    display: none;
}

.blog-post.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Menu Page */

/* ================= Menu Section ================= */

.menu-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.menu-subtitle {
    color: #b07d4d;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    position: relative;
    display: inline-block;
}

.menu-navbar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: #d4a373;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.tab-btn:hover {
    background: #b07d4d;
}

.tab-btn.active {
    background: #b07d4d;
    border: 1px solid #444;
}

/* ================= Menu Items ================= */
.menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 40px;
    padding: 0 15px;
}

.menu-category {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.menu-category.active {
    display: grid;
}

.dish {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.dish img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1/1;
}


.dish.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= Note Section ================= */
.note-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 1.8;
    background-color: #f3e0cc61;
    padding: 40px 10%;
    text-align: left;
}

.note p strong {
    font-size: 22px;
    color: #b07d4d;
}

/* ================= Popular Dishes ================= */
.popular-dishes {
    padding: 60px 10px;
    text-align: center;
    background: #ffffff;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #b07d4d;
}

.section-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
    color: #1e1e1e;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: auto;
}

.special-dish {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.special-dish:nth-child(even) {
    flex-direction: row-reverse;
}

.special-dish:hover {
    transform: translateY(-10px);
}

.special-dish img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid #d4a373;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 15px; */
    animation: rotateImage 15s linear infinite;
}

@keyframes rotateImage {
    form {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.special-dish h3 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
}

.dish-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}


/* ================= Responsiveness Menu Section================= */
@media (max-width: 1200px) {
    .menu-hero {
        height: 400px;
    }

    .menu-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .menu-category {
        grid-template-columns: 1fr;
    }

    .dish {
        flex-direction: column;
        text-align: center;
    }

    .note-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        height: 350px;
        padding: 0 15px;
    }

    .menu-hero h1 {
        font-size: 2.5rem;
    }

    .menu-hero p {
        font-size: 1.2rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .special-dish {
        flex-direction: column;
        text-align: center;
    }

    .special-dish img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {

    .special-dish:nth-child(even) {
        flex-direction: column;
    }

    .menu-title {
        font-size: 22px;
    }

    .tab-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .dish img {
        width: 55px;
        height: 55px;
    }

    .dish h3 {
        font-size: 16px;
    }

    .dish p {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }
}