﻿h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Paragraphs only */
p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #faebd7;
}


.navbar {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    padding: 10px 20px;
    background-color: black;
    font-family: 'Montserrat', sans-serif;
    z-index: 1000;
}


 

.nav-link {
    color: #fff0db !important;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
}

    .nav-link.active, .nav-link:hover {
        background-color: #5d3d2c;
        border-radius: 10px;
        color:white;
        
    }

.order-btn {
    background-color: #ff3030;
    color: #fff0db;
    font-weight: bold;
    border: 4px solid #fff0db;
    border-radius: 10px;
    padding: 8px 30px;
}

    .order-btn:hover {
        background-color: #d83f1e;
    }



    /*home page second section*/


.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0px;
    background-color: #f9e4cb;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

    .hero img {
        max-height: 500px; 
        width: auto;
        opacity: 0;
        transform: scale(0.5);
        animation: growIn 1.5s ease forwards;
    }

    .hero .left-img {
        animation-name: slideLeftBoom;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        height: 700px;
        width: 400px;
    }

    .hero .right-img {
        animation-name: slideRightBoom;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        height: 700px;
        width: 400px;
    }

@keyframes slideLeftBoom {
    0% {
        transform: translateX(-100%) scale(0.5);
        opacity: 0;
    }

    60% {
        transform: translateX(30px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideRightBoom {
    0% {
        transform: translateX(100%) scale(0.5);
        opacity: 0;
    }

    60% {
        transform: translateX(-30px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}


.hero-content {
    text-align: center;
    justify-content:center;
    flex: 1;
    z-index: 2;
}

/*    .hero-content h1 {
        font-size: 80px;
        font-weight: 1500;
        color: #FFF7EB;
        
        text-shadow: 8px 8px 0px #401C10;
        stroke: #401C10;
        -webkit-text-stroke: unset;
        stroke-width: 2px;
        -webkit-text-stroke-width: 2px;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
    }*/


    .hero-content h1 {
        font-family: 'Chewy', cursive;
        font-size: 100px;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: #000000;
        text-shadow: 5px 5px 0px #401c0e;
        color: #FFF7EB;
        text-align: center;
        line-height: 1.1;
        stroke: #401C10;
        stroke-width: 2px;
        -webkit-tap-highlight-color: #fff0;
    }

   


    .hero-content p {
        font-size: 18px;
        color: #5d3d2c;
        margin-bottom: 30px;
    }

    .hero-content .order-btn {
        background-color: #ff3030;
        color: #fff0db;
        font-size: 18px;
        font-weight: bold;
        padding: 12px 30px;
        border: none;
        border-radius: 10px;
        box-shadow: 4px 4px #3c190d;
        cursor: pointer;
        transition: transform 0.2s ease;   
    }

        .hero-content .order-btn:hover {
            transform: scale(1.05);
        }

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

        .hero img {
            margin: 20px 0;
        }

    .hero-content h1 {
        font-size: 40px;
    }
}



/*third section home page*/
.menu-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 20px;
    background-color: #faebd7;
}

.menu-card {
    background-color: #fff8ee;
    border-radius: 16px;
    box-shadow: 6px 6px 0px #4a1e0d;
    width: 240px;
    text-align: center;
    padding: 6px;
    transition: transform 0.4s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: slideUpZoom 0.8s ease forwards;
}

    .menu-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 8px 8px 0px #3a180a;
    }

    .menu-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
    }

    .menu-card h3 {
        margin-top: 16px;
        color: #4a1e0d;
        font-size: 24px;
        font-family: 'Montserrat', sans-serif;
    }

@keyframes slideUpZoom {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .menu-card {
        width: 90%;
    }
}




/*featured menu*/
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-image:url('/images/bgsec1.png')
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .menu-header h2 {
        font-size: 36px;
    }

.view-all-btn {
    background: #fff;
    border: 2px solid #3c1e0b;
    box-shadow: 4px 4px 0 #3c1e0b;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.menu-card {
    text-align: center;
    background-color: transparent;
    padding: 10px;
    animation: fadeInZoom 0.8s ease forwards;
    opacity: 0;
}

    .menu-card img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .menu-card:hover img {
        transform: scale(1.05);
    }

    .menu-card h3 {
        font-size: 20px;
        margin: 10px 0 5px;
        color: #3c1e0b;
    }

    .menu-card .price {
        font-size: 22px;
        color: #ff5a00;
    }

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .menu-header h2 {
        font-size: 28px;
    }
}



/*home page riviewcard*/

.revewcard {
    background-color: #fff5e9;
    font-family: 'Montserrat', sans-serif;
    color: #3c1e0b;
}

.review-card {
    background-color: #ffc928;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 10px 10px 0 #3c1e0b;
    position: relative;
    height: 100%;
}

.review-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #3c1e0b;
}

    .review-author img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-right: 10px;
        border: 3px solid #000;
    }

.stars {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

h2.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 40px;
}


.videocraft {
    background-color: #fff5e9;
    font-family: 'Montserrat', sans-serif;
    color: #3c1e0b;
    padding: 60px 0;
    overflow-x: hidden;
}

    .videocraft h2 {
        font-size: 2.2rem;
        color: #2c1506;
        animation: fadeInUp 1s ease-in-out forwards;
    }

    .videocraft p {
        font-size: 1.1rem;
        line-height: 1.7;
        animation: fadeInUp 1.3s ease-in-out forwards;
        opacity: 0;
    }

.btn-outline-dark {
    transition: all 0.3s ease;
}

.hover-rise:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Video Styling */
.video-wrapper {
    border: 3px solid #f2e1cc;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    animation: fadeInRight 1.2s ease-in-out forwards;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-left {
    animation: fadeInUp 1s ease-in-out forwards;
}

.animate-right {
    animation: fadeInRight 1.2s ease-in-out forwards;
}
 



.btn-custom {
    background-color: #fff5e9;
    border: 2px solid #3c1e0b;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #3c1e0b;
    box-shadow: 5px 5px 0 #3c1e0b;
    transition: all 0.2s;
}

    .btn-custom:hover {
        box-shadow: 2px 2px 0 #3c1e0b;
    }

.video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 10px 10px 0 #3c1e0b;
}

    .video-box img {
        width: 100%;
        height: auto;
        display: block;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff5e9;
    border: 3px solid #3c1e0b;
    padding: 20px;
    border-radius: 20px;
}

    .play-button i {
        font-size: 2rem;
        color: #3c1e0b;
    }



.featrdicon {
    background-color: #faebd7;
}
.feature-icon {
    font-size: 2.5rem;
    color: #4B2E1E; /* dark brown */
}

.feature-title {
    font-weight: 700;
    color: #4B2E1E;
}

.feature-description {
    color: #4B2E1E;
}



.instapicsection {
    background-color: #f6ecdb;
}

.gallery-title {
    font-weight: 800;
    color: #4B2E1E;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center
}

.insta-image {
    border-radius: 1rem;
    box-shadow: 8px 8px 0 #4B2E1E;
    overflow: hidden;
}

    .insta-image img {
        border-radius: 1rem;
        display: block;
        width: 100%;
        height: auto;
    }

.insta-button {
    background-color: #fff;
    border: 2px solid #4B2E1E;
    color: #4B2E1E;
    font-weight: bold;
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 5px 5px 0 #4B2E1E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .insta-button:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 8px 8px 15px rgba(75, 46, 30, 0.4);
    }



.app-gradient {
    background: linear-gradient(to right, #ffd42d 40%, #f1441d 100%);
    box-shadow: 8px 8px 0 #3a1c0e;
    border-radius: 1.5rem;
}




@keyframes starPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.star-icon {
    max-width: 100px;
    z-index: 0;
    animation: starPulse 2s infinite ease-in-out;
    transition: transform 0.3s ease;
}
    .star-icon:hover {
        transform: scale(1.3) rotate(15deg);
    }

.abouttsect {
    font-family: 'Montserrat', sans-serif;
    width: auto;
    height: auto;
    background-color: #f9e4cb; 
    color:grey;
   
    /*height: 470px;
    background-image: url('../images/header2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.paratext {
   color:white;
    font-size:20px;
}
/*.abouttsect {
    position: relative;
    height: 470px;
    font-family: 'Montserrat', sans-serif;
    width: auto;
    background-image: url('../images/header2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .abouttsect::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.paratext {
    color: white;*/ /* change to white for contrast */
    /*font-size: 20px;
    position: relative;
    z-index: 2;
}*/
.about-section h2 {
    font-family: 'Chewy', cursive;
    font-size: 100px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
    text-shadow: 5px 5px 0px #401c0e;
    color: #FFF7EB;
    text-align: center;
    line-height: 1.1;
    stroke: #401C10;
    stroke-width: 2px;
    -webkit-tap-highlight-color: #fff0;
}




.play-button i {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.video-feature-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #faebd7;
}


.counter-section {
    background-color: #f6cb2e;
    border-radius: 20px;
    box-shadow: 6px 6px 0 #4d1f00;
    padding: 40px 20px;
    color: #4d1f00;
}

.counter {
    font-size: 48px;
    font-weight: bold;
}

.label {
    font-size: 18px;
}

.border-right {
    border-right: 2px dashed #f0b000;
}




.somethingbigger {
    background-color: #f9eedf;
    font-family: 'Montserrat', sans-serif;
}

.hero-text h2 {
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #4d1f00;
}

.hero-text p {
    color: #4d1f00;
    max-width: 400px;
}

.star-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #fff8f0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 8px 8px 0 #4d1f00;
    max-width: 300px;
}

    .testimonial-box img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .testimonial-box .author {
        font-weight: 700;
        margin-bottom: 0;
    }

    .testimonial-box .role {
        font-size: 0.875rem;
        color: #4d1f00;
    }



.ourvalues {
    background-color: #f9eedf;
    font-family: 'Segoe UI', sans-serif;
}



.value-icon {
    font-size: 2rem;
    background-color: #f9eedf;
    border: 2px solid #4d1f00;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    color: #4d1f00;
    box-shadow: 5px 5px 0 #4d1f00;
    margin: 0 auto 15px auto;
}

.value-title {
    font-weight: 700;
    color: #4d1f00;
}

.value-text {
    color: #4d1f00;
    font-size: 0.95rem;
}



.join-section { 
    background-color: #fff4e6;
    color: black;
    border-radius: 1rem;
    box-shadow: 8px 8px 0 #4d1f00;
    padding: 3rem 2rem;
    position: relative;
}

.join-title {
    font-weight: 800;
    font-size: 2rem;
}
.join-title p{
    color:white;
}
.join-btn {
    background-color: #fff;
    color: #e74c1b;
    font-weight: bold;
    border-radius: 0.75rem;
    padding: 0.5rem 1.5rem;
    position: relative;
    box-shadow: 5px 5px 0 #4d1f00;
    border: none;
}

.icon-circle {
    background-color: #f9eedf;
    color: #4d1f00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
}

.icon-top-left {
    top: 10px;
    left: 10%;
}

.icon-bottom-left {
    bottom: 10px;
    left: 15%;
}

.icon-top-right {
    top: 10px;
    right: 10%;
}

.icon-bottom-right {
    bottom: 10px;
    right: 15%;
}

.icon-center-right {
    top: 55%;
    transform: translateY(-50%);
    right: 5%;
}

.star {
    font-size: 1.5rem;
    position: absolute;
    color: #fff;
}

.star-left {
    left: 25%;
    top: 55%;
    transform: rotate(15deg);
}

.star-right {
    right: 25%;
    top: 10%;
    transform: rotate(-10deg);
}




.contact-container {
    background-color: #fff4e6;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #f9f1e7;
}

.form-control::placeholder {
    color: #aaa;
}

.submit-btn {
    background: linear-gradient(to right, #ff3030, #ff3030);
    border: none;
    padding: 0.6rem 2rem;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 4px 4px 0px #71200f;
}

.image-section {
    position: relative;
}

.star-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
}

textarea {
    resize: none;
}

.contact-section {
    background-color: #faebd7;
    
    padding: 60px 0;
}

.contact-icon {
    font-size: 30px;
    color: #4b2b1d;
    border: 2px solid #4b2b1d;
    border-radius: 50%;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: transform 0.4s ease;
}

.contact-text h5 {
    font-weight: bold;
    color: #4b2b1d;
    font-size: 1.25rem;
}

.contact-text p {
    margin: 0;
    color: #4b2b1d;
}

.contact-box:hover .contact-icon {
    transform: scale(1.2);
}


.section {
    padding: 50px 0;
}

.content-box {
    background-color: #fff6eb;
    border-radius: 15px;
}

.custom-img {
    border-radius: 15px;
    box-shadow: 8px 8px 0 #3d1f14;
}

.btn-custom {
    background-color: #fff6eb;
    border: 2px solid #3d1f14;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 4px 4px 0 #3d1f14;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

    .btn-custom:hover {
        box-shadow: none;
        transform: translate(4px, 4px);
    }

h3 {
    color: #3d1f14;
    font-weight: 900;
}

p {
    color: #6c584c;
}




.franchise-section {
    padding: 60px 0;
    background-color: #fff4e6;
}

.franchise-heading,
.franchise-subheading {
    color: #3d1f14;
    font-weight: 900;
}

.franchise-text {
    color: #6c584c;
}

.franchise-btn {
    background-color: #ef5b25;
    color: #fff;
    font-weight: bold;
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 4px 4px 0 #3d1f14;
    transition: all 0.2s ease;
}

    .franchise-btn:hover {
        transform: translate(4px, 4px);
        box-shadow: none;
    }

.franchise-img {
    border-radius: 15px;
    box-shadow: 8px 8px 0 #3d1f14;
}

.franchise-divider {
    height: 40px;
    background: url('https://www.transparenttextures.com/patterns/cream-dust.png');
}

.franchise-icon-box {
    text-align: center;
}

    .franchise-icon-box i {
        font-size: 40px;
        color: #ef5b25;
    }

.franchise-star {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    animation: rotateStar 3s linear infinite;
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}






.form-wrapper {
    background-color: #ffd429;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.burger-img {
    max-width: 50%;
    max-height: 300px;
    animation: popInBack 1.5s ease-in-out forwards;
}

@keyframes popInBack {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}





.checkbox-label {
    font-size: 0.9rem;
}



.newsletter-section {
    background-color: #ffc107;
    border:1px solid red;
    border-radius:25px;
    padding: 50px 20px;
}

.newsletter-title {
    color: #4b1e0b;
    font-weight: 700;
    font-size: 2rem;
}

.newsletter-form {
    background: #fff4e6;
    border: 1px solid #4b1e0b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(75, 30, 11, 0.4);
}

.form-control {
    border: none;
    background-color: #fff4e6;
}

    .form-control:focus {
        box-shadow: none;
    }

.sidebar {
    min-height: 100vh;
    background-color: #1e1e2f;
    color: white;
    padding-top: 20px;
}

    .sidebar .nav-link {
        color: white;
        padding: 12px;
        border-radius: 6px;
        transition: background 0.3s;
    }

        .sidebar .nav-link:hover {
            background-color: #292947;
        }

        .sidebar .nav-link i {
            margin-right: 10px;
        }

.brand-icon {
    font-size: 36px;
    color: #3789a1;
}

@media (max-width: 768px) {
    .sidebar {
        padding: 10px;
    }

    .brand-text {
        font-size: 18px;
    }
}


.ourstory h2 {
    font-size: 2.5rem;
}

.ourstory p {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .ourstory h2 {
        font-size: 2rem;
    }

    .ourstory .text-center.mb-5 p {
        font-size: 0.95rem;
    }

    .ourstory img {
        width: 100%;
        height: auto;
    }

    .ourstory .d-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
}



.investment-container {
    background: #fff8f0;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

.investment-title {
    background: #ff3030;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
}

.table-bordered th, .table-bordered td {
    vertical-align: middle;
    text-align: center;
}

.note {
    font-size: 0.9rem;
    margin-top: 20px;
    background: #fff3cd;
    padding: 15px;
    border-left: 5px solid #ffc107;
    border-radius: 4px;
}

.highlight {
    color: #d10000;
    font-weight: bold;
}




.roi-container {
    background-color: #fffaf6;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

.roi-title {
    text-align: center;
    background-color: #ff3030;
    color: white;
    padding: 20px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
}

.note {
    font-size: 0.9rem;
    margin-top: 20px;
    background: #e3f2fd;
    padding: 15px;
    border-left: 5px solid #2196f3;
    border-radius: 4px;
}

.highlight {
    color: #c62828;
    font-weight: bold;
}

.table-warning td {
    background-color: #fff3cd !important;
}






.brand-header {
    background-color: #ff3030;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
}

.section-title {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    border-top: 6px solid #e53935;
}

.requirements {
    padding: 30px;
}

    .requirements ol {
        font-size: 1.1rem;
        font-weight: 500;
        color: #212121;
        padding-left: 20px;
    }

.note-section {
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 20px;
    color: #555;
    font-size: 0.95rem;
}

    .note-section li::marker {
        color: #e53935;
    }



.location-container {
    display: flex;
    min-height: 100vh;
}

.location-sidebar {
    width: 220px;
    padding: 40px 20px;
    background-color: #FFF5E9;
    border-right: 2px solid #f0dbb8;
}

    .location-sidebar h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 30px;
    }

.location-city-list button {
    background: none;
    border: none;
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #3B1F0B;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

    .location-city-list button.active {
        color: #E44D00;
    }

.location-content {
    flex: 1;
    padding: 40px 30px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.location-card {
    background-color: #FEEFD8;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .location-card h3 {
        color: #E44D00;
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .location-card p {
        margin: 4px 0;
        font-size: 15px;
    }

.location-details {
    margin-top: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

    .location-details::before {
        content: "▾";
        margin-right: 6px;
    }

.location-links {
    margin-top: 14px;
    display: flex;
    gap: 20px;
    font-weight: 600;
    font-size: 15px;
}

    .location-links a {
        text-decoration: none;
        color: #3B1F0B;
        border-bottom: 2px solid #3B1F0B;
        padding-bottom: 2px;
        display: inline-flex;
        align-items: center;
    }

        .location-links a:last-child::after {
            content: " →";
            font-weight: bold;
        }

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }

    .location-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #f0dbb8;
    }

    .location-content {
        padding: 20px;
    }
}


.tfpmenulist {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

    .tfpmenulist:hover {
        transform: scale(1.02);
    }



.menu-category {
    font-size: 1.25rem;
    font-weight: bold;
    color: #FFD700;
}

.menu-item {
    margin-bottom: 0.75rem;
}

    .menu-item i {
        color: #FFD700;
        margin-right: 8px;
    }

.price-tier {
    font-weight: 600;
}

.menu-buttons {
    margin-bottom: 20px;
    gap: 10px;
}

    .menu-buttons .btn {
        min-width: 120px;
        font-weight: bold;
        border-radius: 50px;
    }

.menu-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

.menu-img {
    width: auto;
    height: 100vh;
    display: none;
    transition: opacity 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .menu-img.active {
        display: block;
        opacity: 1;
    }

@media (max-width: 576px) {
    .menu-buttons {
        flex-direction: column;
        align-items: center;
    }

        .menu-buttons .btn {
            width: 80%;
            margin-bottom: 10px;
        }
}

     .card {
            height: 100%;
        }
        .carousel-item {
            padding: 40px 0;
        }
        .carousel-inner {
            text-align: center;
        }




/*form image responsive*/

.menu-content img {
    object-fit: cover; 
    max-height: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .menu-content img {
        width: 100%;
    }
}