/* General Styles */
        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #ffffff;  
            color: #a57c00;  
        }

        /* Header Styles */
        .header {
            background: linear-gradient(90deg, rgba(55,31,1,1) 0%, rgba(144,110,28,1) 35%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .section {
            padding: 50px 20px;
        }

        .section-title {
            font-size: 2.5em;
            color: #a57c00;
            text-align: center;
            margin-bottom: 30px;
        } 

        /* Navbar Styles */

        .navbar-header {
            display: flex;
            align-items: center;
        }
        
        .navbar-custom {
            background-color: transparent; /* Transparent background */
            border: none;
            padding: 10px 10px;
            position: relative;
        }

        .navbar-custom .navbar-brand {
            padding: 0;
            display: flex;
            align-items: center;
        }

        .navbar-custom .logo img {
            height: 60px; 
        }

        .navbar-custom .navbar-nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .navbar-custom .navbar-nav > li {
            border-width: 2px;
            border-style: double;
            border-color: rgb(214, 183, 6);
            margin-right: 2px;
            line-height: 50px;
            height: 100%;
            display: inline-block;
            position: relative;
            z-index: 1;
            text-decoration: none;
            text-transform: uppercase;
            text-align: center;
            cursor: pointer;
            position: relative;
            width: 150px;
            height: 60px;
            background-color: rgb(88, 49, 2);
            border-radius: 10px;
        }

        .navbar-custom .navbar-nav > li > a {
            font-family: 'Montserrat', sans-serif;
            text-shadow: 2px 2px 4px #000000;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            color: #ffffff; /* White text */
        }

        .navbar-custom .navbar-nav > li:hover  {
            border-width: 2px;
            border-style: double;
            border-color:rgb(214, 183, 6);
            margin-right: 2px;
            line-height: 50px;
            height: 100%;
            display: inline-block;
            position: relative;
            z-index: 1;
            text-decoration: none;
            text-transform: uppercase;
            text-align: center;
            cursor: pointer;
            position: relative;
            width: 150px;
            height: 60px;
            background-color:#a57c00;
            border-radius: 10px;
        }

        .navbar-custom .navbar-nav > li > a:hover {
            font-family: 'Montserrat', sans-serif; /* Use clean font */
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            color: #ffffff; /* White text */
        }

        .navbar-header .signature {
            margin-left: 10px;
            font-family: 'Dancing Script', cursive;
            font-size: 3.0em;
            color: white;
            vertical-align: middle;
        }
        
        /* Brand Section Styles */
        #brandSection {
            position: relative;
            padding: 50px 20px;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .brand-video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .brand-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .brand-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: top;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 20px;
        }

        .brand-details {
            max-width: 600px;
        }

        .brand-title {
            font-size: 2.5em;
            color: rgb(110, 61, 2);
            margin-bottom: 10px;
        }

        .brand-subtitle {
            font-size: 1.2em;
            color: rgb(110, 61, 2);
            margin-bottom: 20px;
        }

        .brand-description {
            font-size: 1.2em;
            color: rgb(110, 61, 2);
            margin-bottom: 20px;
        }

        .brand-button {
            background-color: #a57c00;
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
        }

        .brand-button:hover {
            background-color: #8a6400;
            color: #ffffff;
        }

        .owner-image img {
            max-width: 450px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

        @media (max-width:768px) {
            .brand-title {
                font-size: 2.0em;
            }
            .owner-image img {
                width: 180px;
            }
        }

        /* Carousel Section Styles */

        #carouselSection {
            padding: 50px 0;
            background-color: #ffffff;
        }

        #carousel {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-inner .item {
            height: 500px;
            background-position: center;
            background-size: cover;
        }

        .carousel-caption {
            background: rgba(55,31,1, 0.8);  
            padding: 20px;
            color: white;
        }

        @media (max-width: 768px) {
            .social-media-item {
                background-image: url('../images/socialmedia_mobile.jpg') !important;
            }
        }

        /* Banner Section Style */
        .banner {
            position: relative;
            width: 100%;
            height: 60vh;
            overflow: hidden;
        }

        .banner video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            z-index: 1; /* Ensure the video stays below the overlay */
        }

        /* Banner Section Style */
.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1; /* Ensure the video stays below the overlay */
}

/* Banner Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 10;
    padding: 1rem;
}

        /* Logo Style */
        .banner-logo {
            max-width: 150px; /* Adjust size as needed */
            margin-bottom: 1rem; /* Add spacing below the logo */
            z-index: 11; /* Ensure logo is above video */
        }

        /* Text Styles */
        .banner-overlay h1 {
            margin-left: 10px;
            font-family: 'Dancing Script', cursive;
            font-size: 4.0em;
            color: white;
            vertical-align: middle;
            margin: 10px 0;
        }

        .banner-overlay h3 {
            margin-left: 10px;
            font-family: 'Dancing Script', cursive;
            font-size: 2.0em;
            color: white;
            vertical-align: middle;
            margin: 10px 0;
        }

        /* About Me */

        .about-me {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .about-me img {
            max-width: 200px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        .about-me-text {
            max-width: 600px;
            font-size: 1.2em;
            color: #4f4f4f;
        }

        /* Formation */

        .formation, .experience {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .formation-box, .experience-box {
            max-width: 350px;
            background-color: #f9f6f1;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
        }
        .formation-box img, .experience-box img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .formation-box h3, .experience-box h3 {
            font-size: 1.8em;
            color: #a57c00;
            margin-bottom: 15px;
        }

        /* Footer Styles */
        .footer-clean {
        padding:50px 0;
        background-color:#fff;
        color:#4b4c4d;
        }

        .footer-clean h3 {
        margin-top:0;
        margin-bottom:12px;
        font-weight:bold;
        font-size:16px;
        }

        .footer-clean ul {
        padding:0;
        list-style:none;
        line-height:1.6;
        font-size:14px;
        margin-bottom:0;
        }

        .footer-clean ul a {
        color:inherit;
        text-decoration:none;
        opacity:0.8;
        }

        .footer-clean ul a:hover {
        opacity:1;
        }

        .footer-clean .item.social {
        text-align:right;
        }

        @media (max-width:768px) {
        .footer-clean .item {
            text-align:center;
            padding-bottom:20px;
        }
        }

        @media (max-width: 768px) {
        .footer-clean .item.social {
            text-align:center;
        }
        }

        .footer-clean .item.social > a {
        font-size:24px;
        width:40px;
        height:40px;
        line-height:40px;
        display:inline-block;
        text-align:center;
        border-radius:50%;
        border:1px solid #ccc;
        margin-left:10px;
        margin-top:22px;
        color:inherit;
        opacity:0.75;
        }

        .footer-clean .item.social > a:hover {
        opacity:0.9;
        }

        @media (max-width:991px) {
        .footer-clean .item.social > a {
            margin-top:40px;
        }
        }

        @media (max-width:767px) {
        .footer-clean .item.social > a {
            margin-top:10px;
        }
        }

        .footer-clean .copyright {
        margin-top:14px;
        margin-bottom:0;
        font-size:13px;
        opacity:0.6;
        }


        /* Customer Reviews Section Styles */
        #customerReviewsSection {
            padding: 50px 20px;
            background-color: #f9f6f1;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        #customerReviewsSection h2 {
            font-size: 2.5em;
            color: #a57c00;
            text-align: center;
            margin-bottom: 30px;
        }

        .review-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
            gap: 30px;
        }

        .review-box {
            max-width: 400px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
        }

        .review-box img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .review-quote {
            font-size: 1.2em;
            color: #4f4f4f;
            margin-bottom: 10px;
            font-style: italic;
        }

        .review-author {
            font-weight: bold;
            color: #a57c00;
        }

        .review-box img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        /* Business and Location Section Styles */
        #businessAndLocationSection {
            padding: 50px 20px;
            background-color: #f9f6f1;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        #businessAndLocationSection h2 {
            font-size: 2.5em;
            color: #a57c00;
            text-align: center;
            margin-bottom: 30px;
        }

        .businessAndLocation-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
            gap: 30px;
        }

        .businessAndLocation-box {
            max-width: 650px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
        }

        .businessAndLocation-box img {
            width: 60%;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .businessAndLocation-location {
            font-size: 1.2em;
            color: #4f4f4f;
            font-style: italic;
            text-align: left;
        }

        /* Menu Section Styles */
        #menuSection {
            padding: 50px 20px;
            background-color: #ffffff;
        }

        #menuSection h2 {
            font-size: 2.5em;
            color: #a57c00;
            text-align: center;
            margin-bottom: 30px;
        }

        .menu-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: flex-start;
            gap: 30px;
        }

        .menu-category {
            max-width: 350px;
            background-color: #f9f6f1;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
        }

        .menu-category h3 {
            font-size: 1.8em;
            color: #a57c00;
            margin-bottom: 15px;
        }

        .menu-item {
            font-size: 1.2em;
            color: #4f4f4f;
            margin-bottom: 10px;
        }

        .menu-category img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .menu-category {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .menu-category:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
        }
       
        
        /* Special Section Styles */

        .background-special-section {
            position: relative;
            background-image: url('../images/special/dianamoradosbackground.webp'); 
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .special-list {
            background: rgba(0, 0, 0, 0.9); 
            color: #fff;
            padding: 20px 40px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            text-align: left;
            max-width: 600px;
            width: 90%;
        }

        .special-list h1 {
            margin-bottom: 20px;
            font-size: 2rem;
            color: #ffd700; 
            text-align: center;
        }

        .special-list ul {
            list-style: none;
            padding: 0;
        }

        .special-item {
            display: flex;
            justify-content: space-between;
            font-size: 1.6rem;
            margin: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 5px;
        }

        .special-item span {
            display: block;
        }

        .special-item .name {
            flex: 1;
            padding-right: 10px;
        }

        .special-item .price {
            flex: 0 0 auto;
            text-align: right;
        }

        .special-container {
            text-align: center;
            padding: 30px;
            background: linear-gradient(145deg, #ffe6e6, #fd8f8f);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            max-width: 1200px;
            margin: 40px auto;
        }

        .special-header {
            background-color: #ff6f6f;
            padding: 15px;
            border-radius: 15px 15px 0 0;
        }

        .special-header h1 {
            margin: 0;
            color: #fff;
            font-size: 1.8em;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
        }

        .special-cake-image {
            margin: 30px 0;
        }

        .special-cake-image img {
            width: 80%;
            max-width: 900px;
            border: 8px solid #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease-in-out;
        }

        .special-cake-image img:hover {
            transform: scale(1.4);
        }

        .special-message {
            font-size: 1.3em;
            margin: 20px 0;
            line-height: 1.6;
            color: #444;
        }

        .special-price {
            font-size: 1.8em;
            font-weight: bold;
            color: #df5858;
            margin: 20px 0;
        }

        /* Product Section */
        .product-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-box {
            max-width: 550px;
            background-color: #f9f6f1;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: left;
        }
        .product-box img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 15px;
            width: 500px;
            height: 400px;
        }

        .product-box h3 {
            text-align: center;
            font-size: 1.8em;
            color: #a57c00;
            margin-bottom: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .product-box {
                max-width: 350px;
                background-color: #f9f6f1;
                border-radius: 10px;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                text-align: left;
            }
            .product-box img {
                width: 100%;
                border-radius: 10px;
                margin-bottom: 15px;
                width: 320px;
                height: 300px;
            }
        }

/* Section Contact */

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f6f1;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    font-size: 3rem;
    color: #a57c00;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: none;
    height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a57c00;
}

/* Works */
.workarticles-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.workarticle {
    display: flex;
    flex-direction: row;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.workarticle img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.workcontent {
    padding: 15px;
    flex: 1;
}

.workbtn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.workbtn:hover {
    background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workarticle {
        flex-direction: column;
    }

    .workarticle img {
        width: 100%;
        height: auto;
    }
}

@media (max-width:768px) {
    .navbar-header .signature {
        margin-left: 10px;
        font-family: 'Dancing Script', cursive;
        font-size: 2.0em;
        color: white;
        vertical-align: middle;
    }
}

/* Navigation Mobile View */

.navbarmobile {
    visibility:hidden;
    position: fixed;
    top: 72px;
    left: 0px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 1rem;
    color: white;
    background: linear-gradient(90deg, rgba(55,31,1,1) 0%, rgba(144,110,28,1) 35%);
}

@media (max-width:768px) {
    .navbarmobile {
        visibility:visible;
    }
}

.menumobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: white;
}

.menumobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menumobile.hidden {
    display: none;
}

.menumobile {
    list-style: none;
    margin: 2px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.6);
}

.menumobile li {
    margin: 0;
}

.menumobile a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.menumobile a:hover {
    color: #a57c00;
}

/* Menu Toggle Animation */
.menumobile-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menumobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menumobile-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}





