* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background: #0f0e0f !important;
    font-family: serif !important;
}


/* Header Section */
.header {
    background: #0e0e0e;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: transparent;
}

.header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.503);
    z-index: 99;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-family: sans-serif !important;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover {
    color: #c19f5f;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    background: #111;
    border: none;
    border-radius: 0 !important;
}

.dropdown-item {
    color: #fff;
    font-family: sans-serif !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right: 150px !important;
}

.dropdown-item:hover {
    background: #c19f5f !important;
    color: #000 !important;
}


/* Banner Section */
.banner,
.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
    position: relative;
    z-index: 1;
}

.banner-img {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 6s ease-in-out forwards;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.banner .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.662);
}

.banner .carousel-caption {
    top: 30%;
    bottom: 0;
    text-align: center;
    z-index: 9;
}

.banner .carousel-caption h1 {
    font-size: 100px;
    font-weight: 400 !important;
    animation: fadeUp 1.2s ease forwards;
    font-family: serif
}

.banner .carousel-caption h1 span {
    color: #c19f5f;
}

.banner .carousel-caption p {
    font-size: 15px;
    width: 70%;
    color: #888;
    margin: auto;
    animation: fadeUp 1.6s ease forwards;
}

.banner .carousel-caption .btn {
    margin-top: 25px;
    font-family: sans-serif !important;
    color: #c19f5f !important;
    border: 1px solid #c19f5f !important;
    padding: 20px 40px !important;
    border-radius: 40px !important;
    animation: fadeUp 2s ease forwards;
}

.banner .carousel-caption .btn:hover {
    color: #fff !important;
    border-color: #fff !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .carousel-control-prev-icon,
.banner .carousel-control-next-icon {
    color: #fff !important;
}

/* Media Query */
@media (max-width: 1199px) {
    .banner .carousel-caption h1 {
        font-size: 60px;
    }

    .banner .carousel-caption p {
        font-size: 14px;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .banner .carousel-caption h1 {
        font-size: 40px;
    }

    .banner .carousel-caption p {
        font-size: 13px;
        width: 100%;
    }

    .banner .carousel-caption .btn {
        width: 100% !important;
    }
}




/* Luxury Section */
.luxury-section {
    background: radial-gradient(circle at center, #1a1a1a, #000);
}

.title {
    font-size: 36px;
    font-weight: 400;
}

.title span {
    color: #c9a45c;
    font-style: italic;
}

.desc {
    color: #aaa;
    line-height: 1.7;
    font-family: sans-serif !important;
}

.download-link {
    display: inline-block;
    margin-top: 20px;
    color: #c9a45c;
    font-family: sans-serif !important;
    text-decoration: none;
    transition: 0.3s;
}

.download-link i {
    margin-right: 8px;
}

.download-link:hover {
    color: #fff;
}

.read-more {
    display: inline-block;
    margin-top: 30px;
    color: #c9a45c;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
}

.read-more:hover {
    color: #fff;
}

.product-box img {
    width: 80%;
    height: 500px;
    margin-top: 50px;
    transition: transform 0.6s ease;
}

.product-box:hover img {
    transform: scale(1.05) rotate(-1deg);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: 0.3s;
}

.feature-item i {
    font-size: 54px;
    color: #c9a45c;
    transition: 0.3s;
}

.feature-item p {
    color: #aaa;
    font-size: 16px;
    font-family: sans-serif !important;
}

.feature-item:hover i {
    transform: rotate(10deg) scale(1.1);
    color: #fff;
}


/* Unique Section */
.unique {
    padding: 80px 0;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.unique-bg {
    position: absolute;
    inset: 0;
    background: url("images/unique.jpg") center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.unique::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.496);
    z-index: 2;
}

.unique .container {
    position: relative;
    z-index: 4;
}

.unique h2 {
    font-size: 90px;
    font-weight: 400;
}

.unique h2 span {
    color: #c9a45c;
    font-style: italic;
}

.rotating3-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border: 1.5px solid #c9a45c;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBox 20s linear infinite;
    z-index: 7;
}

@keyframes rotate3Box {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Store Section */
.title {
    padding: 80px 0;
}

.title-sub {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    color: #c19f5f;
    font-family: sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.title-main {
    font-size: 55px;
    font-weight: 400;
    color: #fff;
}

.store {
    background: #0b0b0b;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.store .product-card {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.store .dots {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 320px;
    height: 320px;
    background:
        radial-gradient(circle, rgba(255, 215, 130, 0.4) 1px, transparent 1px);
    background-size: 22px 22px;
    transform: translate(-50%, -50%);
    animation: rotateDots 25s linear infinite;
    z-index: 1;
}

@keyframes rotateDots {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.store .product-img {
    position: relative;
    z-index: 2;
    width: 250px;
    transition: transform 0.4s ease;
}

.store .product-card:hover .product-img {
    transform: scale(1.3);
}

.store .add-cart {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 3;
}

.store .product-card:hover .add-cart {
    opacity: 1;
}

.store h5 {
    margin-top: 60px !important;
    font-size: 20px;
    transition: all 0.5s ease;
}

.store .price {
    color: #c19f5f;
    font-size: 18px;
    transition: all 0.5s ease;
}

.store .old {
    color: #777;
    text-decoration: line-through;
    margin-right: 8px;
}

.store .btn-outline-gold {
    border: 1px solid #c19f5f !important;
    color: #c19f5f !important;
    border-radius: 30px !important;
    padding: 12px 25px !important;
}

.store .btn-outline-gold:hover {
    background: #d4af37 !important;
    color: #000 !important;
}

.store .product-card:hover h5 {
    transform: translateY(60px);
}

.store .product-card:hover .price {
    transform: translateY(60px);
}

/* Video Section */
.video-section {
    position: relative;
    height: 75vh;
    background: url('images/video-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.video-content h1 {
    font-size: 90px;
    font-weight: 400;
    margin-bottom: 40px;
}

.play-btn {
    width: 100px;
    height: 100px;
    border: 1px solid #c9a45c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    color: #c9a45c;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-btn:hover {
    color: #fff;
    border-color: #fff;
}

@media(max-width:768px) {
    .video-content h1 {
        font-size: 40px;
    }
}


/* Store Stat Section */
.store-stats {
    padding: 90px 0;
    color: #fff;
}

.store-stats .stat-box {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: 0.4s ease;
}

.store-stats .stat-box:hover {
    transform: translateY(-8px);
}

.store-stats h2 {
    font-family: "Georgia", serif;
    font-size: 80px;
    color: #c9a45c;
    margin-bottom: 10px;
}

.store-stats p {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
}

.store-stats .divider {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    height: 150px;
    background: #c9a45c;
    width: 3px;
}

.store-stats .col-md-3:last-child .divider {
    display: none;
}

@media(max-width:768px) {
    .store-stats h2 {
        font-size: 55px;
    }

    .store-stats .divider {
        display: none;
    }
}


/* Chef Section */
.chef {
    background: #0b0b0b;
    color: #fff;
    overflow: visible;
}

.chef .chef-left {
    background: url('images/chef-left.png') center/cover no-repeat;
    min-height: 600px;
}

.chef .chef-right {
    background: #2f2627fe;
    position: relative;
    padding: 100px 80px;
    min-height: 800px;
    overflow: visible;
    transition: 0.6s ease;
}

.chef .chef-right::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 800px;
    background: url('images/chef-right.png') center/contain no-repeat;
}

.chef .content {
    position: relative;
    z-index: 999;
    max-width: 600px;
    transition: 0.6s ease;
}

.chef small {
    letter-spacing: 3px;
    font-family: sans-serif;
    color: #c9a45c;
    font-size: 12px;
}

.chef h2 {
    font-family: Georgia, serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.4;

}

.chef .chef-name-wrap {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-top: 30px;
}

.chef .name {
    margin-top: 30px;
    font-size: 26px;
    letter-spacing: 4px;
    color: #c9a45c;
}

.chef .chef-signature {
    max-width: 140px;
    opacity: 0.9;
}

.chef .chef-img {
    position: absolute;
    left: -250px;
    bottom: -30px;
    width: 550px;
    max-height: 700px;
    z-index: 5;
    transition: 0.6s ease;
}

@media(max-width:1199px) {
    .chef h2 {
        font-size: 30px;
    }

    .chef .chef-left {
        display: none;
    }

    .chef .chef-right {
        width: 100%;
        padding: 80px 40px;
    }

    .chef .chef-img {
        position: relative;
        left: 0;
        margin: 40px auto 0;
        display: block;
        transform: none !important;
    }

    .chef .chef-right:hover .content {
        transform: none;
        max-width: 100%;
    }

}


/* Testimonial Section */
.testimonial-card {
    padding: 80px 0;
    color: #ccc;
}

.testimonial-card-box {
    max-width: 90%;
    margin: auto;
    padding: 100px !important;
    border: 1px solid #c9a24d;
    background: url("images/testimonial-pattern.png");
    transition: all 0.4s ease;
}

.testimonial-card-box:hover {
    box-shadow: 0 0 25px rgba(201, 162, 77, .4);
}

.testimonial-card-box p {
    font-size: 35px;
    line-height: 1.8;
    text-align: center;
}

.testimonial-card-user {
    margin-top: -45px;
    text-align: center;
}

.testimonial-card-user img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #c9a24d;
    margin-bottom: 10px;
}

.testimonial-card-user h5 {
    color: #fff;
    margin: 0;
}

.testimonial-card-user span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a24d;
}

.testimonial-card .carousel-indicators {
    top: 75%;
}

.testimonial-card .carousel-indicators [data-bs-target] {
    background: #555;
    transition: all 0.3s ease;
}

.testimonial-card .carousel-indicators .active {
    background: #c9a24d;
}

/* Media Query */
@media (max-width : 991px) {
    .testimonial-card .carousel-indicators {
        display: none;
    }
}


/* Pastry Section */
.pastry {
    background: url("images/pastry-bg.jpg") center / cover fixed;
    position: relative;
    padding: 40px 0;
    color: #fff;
}

.pastry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.pastry .container {
    position: relative;
    z-index: 2;
}

.pastry .subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a24d;
    margin-bottom: 10px;
}

.pastry h2 {
    font-size: 36px;
    font-weight: 400;
    max-width: 700px;
    margin: auto;
    line-height: 1.4;
}

.pastry-cards {
    position: relative;
    z-index: 5;
}

.pastry-card {
    position: relative;
    overflow: hidden;
}

.pastry-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .6s ease;
}

.pastry-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 6px double #c9a24d;
    transform: rotate(6deg);
    transition: transform .5s ease;
    pointer-events: none;
    z-index: 2;
}

.pastry-card:hover img {
    transform: scale(1.15);
}

.pastry-card:hover::before {
    transform: rotate(0deg) scale(1.3);
}


/* Footer section */
.footer {
    background-color: #000;
    color: #bdbdbd;
    position: relative;
    margin-top: 140px !important;
    padding: 140px 0 40px;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer p {
    font-size: 18px;
    line-height: 1.8;
    width: 300px;
}

.footer-social a {
    display: inline-flex;
    color: #c9a24d;
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-title {
    color: #c9a24d;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #c9a24d;
    margin-top: 8px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-contact i {
    color: #c9a24d;
    font-size: 20px;
}

.footer-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.footer-post small {
    color: #c9a24d;
    letter-spacing: 1px;
}

.footer-post a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-post a:hover {
    color: #c9a24d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 18px;
    font-family: sans-serif !important;
}

.footer-bottom span {
    color: #c9a24d;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 19px;
    background: #2d2627;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}

.scroll-top:hover {
    background-color: #2d262784;
    color: #fff;
}





/* ******************** */
/* craft-bakery Page */
/* Banner2 Section */
.banner2 {
    height: 100vh;
    position: relative;
}

.banner2 .carousel,
.banner2 .carousel-inner,
.banner2 .carousel-item {
    height: 100vh;
}

.banner2-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner2-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner2-slide-1 {
    background-image: url("images/banner2-1.jpeg");
}

.banner2-slide-2 {
    background-image: url("images/banner2-2.jpeg");
}

.banner2-slide-3 {
    background-image: url("images/banner2-3.jpeg");
}

.banner2-center {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.banner2-center img {
    max-width: 600px;
    width: 90%;
}

.banner2 .carousel-indicators button {
    width: 20px;
    height: 5px;
    background: #c9a45c !important;
    border-radius: 50%;
}

/* Card Section */
.banner2-image-cards {
    padding: 100px;
}

.banner2-img-card {
    position: relative;
    height: 600px;
    padding: 25px;
    overflow: hidden;
}

.banner2-img-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
    z-index: 0;
}

.banner2-img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: all 0.4s ease;
    z-index: 1;
}

.banner2-img-card .gold-border {
    position: absolute;
    inset: 20px;
    border: 1px solid #c9a45c;
    z-index: 2;
    pointer-events: none;
    transition: box-shadow 0.4s ease;
}

.banner2-img-card:hover::before {
    transform: scale(1.12);
}

.banner2-img-card:hover::after {
    background: rgba(0, 0, 0, 0.65);
}

.banner2-img-card:hover span {
    box-shadow: 0 0 25px rgba(201, 164, 92, 0.6);
}

.banner2-card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.banner2-card-content h2 {
    font-family: "Georgia", serif;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.banner2-btn {
    margin-top: 25px;
    font-family: sans-serif !important;
    color: #c19f5f !important;
    border: 1px solid #c19f5f !important;
    padding: 20px !important;
    border-radius: 40px !important;
    animation: fadeUp 2s ease forwards;
}

.banner2-btn:hover {
    color: #fff !important;
    border-color: #fff !important;
}

.banner2-img-card.bg1::before {
    background-image: url("images/craft-bakery-1.jpg");
}

.banner2-img-card.bg2::before {
    background-image: url("images/craft-bakery-2.jpg");
}

.banner2-img-card.bg3::before {
    background-image: url("images/craft-bakery-3.jpg");
}

/* Creative Section */
.creative {
    padding: 150px 0;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    overflow: hidden;
}

.creative-title {
    font-family: "Georgia", serif;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 40px;
}

.creative-title span {
    color: #c9a45c;
}

.creative-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.creative-feature i {
    font-size: 28px;
    color: #c9a45c;
    min-width: 40px;
}

.creative-feature h5 {
    margin-bottom: 5px;
    font-family: "Georgia", serif;
}

.creative-feature p {
    color: #aaa;
    font-size: 15px;
}

.creative-image-wrap {
    position: relative;
    display: inline-block;
}

.creative-image-wrap img {
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.creative-image-wrap:hover img {
    transform: rotate(25deg) scale(1.1);
}

.creative-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle, rgba(255, 215, 130, 0.677) 1px, transparent 1px);
    background-size: 22px 22px;
    transform: translate(-50%, -50%);
    animation: rotateDots 25s linear infinite;
    z-index: 1;
}

@keyframes rotateDots {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Media Query */
@media (max-width: 991px) {
    .creative {
        text-align: center;
    }

    .creative-feature {
        justify-content: center;
    }
}


/* Person Section */
.person {
    position: relative;
    min-height: 100vh;
    background-image: url("images/craft-bakery-person-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.person::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.person .container {
    position: relative;
    z-index: 2;
}

.person-content h2 {
    font-family: Georgia, serif;
    font-size: 50px;
    line-height: 1.3;
    color: #fff;
}

.person-content h2 span {
    color: #c9a45c;
}

.person-content p {
    color: #bbb;
    margin-top: 15px;
    max-width: 480px;
}

.person-btn {
    display: inline-block;
    margin-top: 30px !important;
    padding: 25px 50px !important;
    border: 1px solid #c9a45c !important;
    color: #c9a45c !important;
    border-radius: 40px;
    text-decoration: none !important;
    letter-spacing: 2px !important;
    transition: 0.3s;
}

.person-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.person-image {
    position: relative;
    transform: translateY(50px);
}

.person-image img {
    max-width: 100%;
    height: 800px;
    display: block;
}

/* Media Query */
@media (max-width: 991px) {
    .person {
        background-attachment: scroll;
        text-align: center;
    }

    .person-image {
        transform: translateY(0);
        margin-bottom: 30px;
    }
}

/* Bread Section */
.bread {
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.bread .bread-card {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.bread .dots {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle, rgba(255, 215, 130, 0.4) 1px, transparent 1px);
    background-size: 22px 22px;
    transform: translate(-50%, -50%);
    animation: rotateDots 25s linear infinite;
    z-index: 1;
}

@keyframes rotateDots {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.bread .bread-img {
    position: relative;
    z-index: 2;
    width: 250px;
    transition: transform 0.4s ease;
}

.bread .bread-card:hover .bread-img {
    transform: scale(1.3);
}

.bread .add-cart {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 3;
}

.bread .bread-card:hover .add-cart {
    opacity: 1;
}

.bread h5 {
    margin-top: 60px !important;
    font-size: 20px;
    transition: all 0.5s ease;
}

.bread .price {
    color: #c19f5f;
    font-size: 18px;
    transition: all 0.5s ease;
}

.bread .old {
    color: #777;
    text-decoration: line-through;
    margin-right: 8px;
}

.bread .btn-outline-gold {
    border: 1px solid #c19f5f !important;
    color: #c19f5f !important;
    border-radius: 30px !important;
    padding: 12px 25px !important;
}

.bread .btn-outline-gold:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.bread .bread-card:hover h5 {
    transform: translateY(60px);
}

.bread .bread-card:hover .price {
    transform: translateY(60px);
}


/* Resipes Section */
.recipes {
    position: relative;
    min-height: 900px;
    padding-bottom: 280px;
    background-image: url("images/craft-bakery-recipe-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.recipes::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.288);
    z-index: 1;
}

.recipes .container {
    position: relative;
    z-index: 5;
}


.recipes-text-wrap {
    position: relative;
    display: inline-block;
    padding: 60px 40px;
    z-index: 6;
}

.recipes-rotating-ring {
    position: absolute;
    inset: 0;
    width: 400px;
    height: 400px;
    top: 0;
    left: 30%;
    border: 1px solid #c9a45c;
    animation: rotateRing 14s linear infinite;
    z-index: 5;
}


@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.recipes-text h2 {
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1.3;
    color: #fff;
    position: relative;
    z-index: 99;
}

.recipes-text h2 span {
    color: #c9a45c;
}


.recipes-bread {
    position: absolute;
    right: 3%;
    bottom: -200px;
    z-index: 3;
}

.recipes-bread img {
    max-width: 100%;
}

/* Media Query */

@media (max-width: 991px) {
    .recipes {
        background-attachment: fixed;
        padding-bottom: 50px;
        min-height: 700px;
    }

    .recipes-bread {
        right: 50%;
        transform: translateX(50%);
        bottom: -100px;
    }

    .recipes-bread img {
        max-width: 750px;
    }

    .recipes-text h2 {
        font-size: 70px;
    }

    .recipes-rotating-ring {
        transform: scale(0.85);
        width: 300px;
        height: 300px;
        left: 20%;
    }
}

@media (max-width: 575px) {
    .recipes {
        background-attachment: fixed;
        padding-bottom: 50px;
        min-height: 500px;
    }

    .recipes-bread img {
        max-width: 600px;
    }

    .recipes-text h2 {
        font-size: 55px;
    }

    .recipes-rotating-ring {
        transform: scale(0.7);
        width: 200px;
        height: 200px;
        top: 15%;
        left: 30%;
    }
}


/* Partners Section */
.partners {
    padding-top: 250px;
}

.partners-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partners-logo img {
    max-height: 200px;
    max-width: 200px;
    filter: grayscale(100%) brightness(0.85);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partners-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.2);
}

/* Article Section */
.article1 {
    padding: 80px 0;
}

.article1-card {
    background: transparent;
    color: #fff;
}

.article1-img-wrap {
    position: relative;
    overflow: hidden;
}

.article1-img-wrap img {
    width: 100%;
    height: 250px;
    transition: transform 0.8s ease;
}

.article1-card:hover .article1-img-wrap img {
    transform: scale(1.3);
}

.article1-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #c9a45c;
    padding: 8px 16px;
    font-size: 12px;
    font-family: sans-serif !important;
    letter-spacing: 3px;
    z-index: 3;
}

.article1-small {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    font-family: sans-serif !important;
}

.article1-small span {
    color: #c9a45c;
    margin: 0 6px;
}

.article1-title {
    font-family: Georgia, serif;
    font-size: 29px;
    line-height: 1.3;
    margin-top: 15px;
    color: #fff;
    font-weight: 300 !important;
    transition: color 0.4s ease;
}

.article1-card:hover .article1-title {
    color: #c9a45c;
}

.article1 a {
    text-decoration: none;
}

/* Media Query */
@media (max-width: 767px) {
    .article1-title {
        font-size: 22px;
    }
}





/* ******************** */
/* handmade-cakes Page */
/* Banner3 Section */
.site-bg {
    min-height: 100vh;
    background-image: url("images/testimonial-pattern.png");
    background-repeat: repeat;
    background-size: auto;
    background-color: #0b0b0b;
}

.banner3 {
    padding: 160px 0;
    color: #fff;
}

.banner3-wrap {
    position: relative;
    display: inline-block;
}


.banner3-outline {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid #c9a45c;
    transform: rotate(-30deg);
    top: 60%;
    left: 47%;
    translate: -50% -50%;
    z-index: 1;
    transition: all 0.5s ease;
}

.banner3-wrap:hover .banner3-outline {
    transform: rotate(8deg);
}


.banner3-content {
    position: relative;
    z-index: 2;
}

.banner3 h2 {
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1.2;
    margin-top: 25%;
}

.banner3 h2 span {
    color: #c9a45c;
}

.banner3 p {
    margin-top: 20px;
    color: #aaa;
    max-width: 470px;
    font-weight: 500;
    font-size: 19px;
    font-family: sans-serif !important;
    margin-left: auto;
    margin-right: auto;
}

/* Media Query */
@media (max-width: 991px) {
    .banner3 h2 {
        font-size: 60px;
    }

    .banner3-outline {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .banner3 h2 {
        font-size: 40px;
    }

    .banner3-outline {
        width: 200px;
        height: 200px;
    }
}

/* Cakes Section */
.cakes {
    padding: 100px 0;
}

.cakes-card {
    text-align: center;
    color: #fff;
    transition: transform 0.4s ease;
}

.cakes-img-wrap {
    position: relative;
    overflow: hidden;
}

.cakes-img-wrap img {
    width: 100%;
    transition: transform 0.6s ease;
}

.cakes-card:hover .cakes-img-wrap img {
    transform: scale(1.08);
}

.cakes-content {
    padding-top: 25px;
    transition: transform 0.4s ease;
}

.cakes-card:hover .cakes-content {
    transform: translateY(40px);
}

.cakes-title {
    font-family: Georgia, serif;
    font-size: 35px !important;
    margin-bottom: 6px;
}

.cakes-price {
    color: #c9a45c;
    font-size: 20px;
}

.cakes-btn {
    display: inline-block;
    margin-top: 15px !important;
    padding: 15px 30px !important;
    border: 1px solid #c9a45c !important;
    color: #c9a45c !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.cakes-card:hover .cakes-btn {
    opacity: 1;
    transform: translateY(-10px);
}

.cakes-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}


/* Unique2 Section */
.unique2 {
    position: relative;
    min-height: 700px;
    background-image: url("images/handmade-cakes-unique-sweet-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.unique2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.unique2-wrap {
    position: relative;
    z-index: 3;
    padding: 100px 80px;
}

.unique2-outline {
    position: absolute;
    inset: 0;
    top: 0;
    left: 35%;
    width: 400px;
    height: 400px;
    border: 1px solid #c9a45c;
    transform: rotate(8deg);
    animation: unique2Rotate 20s linear infinite;
    z-index: 4;
    pointer-events: none;
}

@keyframes unique2Rotate {
    from {
        transform: rotate(8deg);
    }

    to {
        transform: rotate(368deg);
    }
}

.unique2-content {
    position: relative;
    z-index: 2;
}

.unique2-content h1 {
    font-family: Georgia, serif;
    font-size: 86px;
    line-height: 1.25;
    color: #fff;
}

.unique2-content h1 span {
    color: #c9a45c;
}

/* Media Query */
@media (max-width: 768px) {
    .unique2-wrap {
        padding: 70px 40px;
    }

    .unique2-outline {
        width: 300px;
        height: 300px;
        left: 20%;
    }

    .unique2-content h1 {
        font-size: 46px;
    }
}

/* Store2 Section */
.store2 {
    padding: 100px 0;
    color: #fff;
}

.store2-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.store2-item:hover {
    transform: translateX(8px);
}

.store2-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #c9a45c;
    overflow: hidden;
    flex-shrink: 0;
}

.store2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.store2-item:hover .store2-img img {
    transform: scale(1.08);
}

.store2-content {
    flex: 1;
}

.store2-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store2-title {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 200 !important;
    color: #c9a45c;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.store2-line {
    flex: 1;
    border-bottom: 1px dotted #c9a45c;
    opacity: 0.6;
}

.store2-price {
    color: #c9a45c;
    font-size: 20px;
    white-space: nowrap;
}

.store2-para {
    margin-top: 6px;
    color: #aaa;
    font-size: 17px;
    font-family: sans-serif;
    max-width: 480px;
}

/* Media Query */
@media (max-width: 768px) {
    .store2-title-row {
        flex-wrap: wrap;
    }

    .store2-line {
        display: none;
    }
}

/* Testimonial2 Section */
.testimonial2 {
    position: relative;
    height: 100%;
    background-image: url("images/handmade-cakes-testimonial-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.testimonial2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.553);
    z-index: 1;
}

.testimonial2 .container {
    position: relative;
    z-index: 2;
}

.testimonial2-card-box {
    max-width: 90%;
    margin: auto;
    padding: 100px !important;
    border: 1px solid #c9a24d;
    background: url("images/testimonial-pattern.png");
    background-color: #101010;
    transition: all 0.4s ease;
}

.testimonial2-card-box:hover {
    box-shadow: 0 0 25px rgba(201, 162, 77, .4);
}

.testimonial2-card-box p {
    font-size: 35px;
    line-height: 1.8;
    text-align: center;
}

.testimonial2-card-user {
    margin-top: 45px;
    text-align: center;
}

.testimonial2-card-user img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #c9a24d;
    margin-bottom: 30px;
}

.testimonial2-card-user h5 {
    color: #fff;
    margin: 0;
}

.testimonial2-card-user span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a24d;
}






/* ******************** */
/* craft-pastry-cafe Page */
/* Banner4 Section */
.banner4 {
    width: 90%;
    margin-top: 110px;
    overflow: hidden;
}

.banner4-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    animation: banner4Zoom 9s ease-in-out infinite;
}

@keyframes banner4Zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.banner4-bg1 {
    background-image: url("images/craft-pastry-banner4-1.jpg");
}

.banner4-bg2 {
    background-image: url("images/craft-pastry-banner4-2.jpg");
}

.banner4-bg3 {
    background-image: url("images/craft-pastry-banner4-3.jpg");
}

.banner4-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.667);
}

.banner4-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner4-title {
    font-size: 80px;
    font-weight: 400;
}

.banner4-subtitle {
    font-size: 80px;
    color: #c9a24d;
}

.banner4-text {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 18px;
    opacity: 0.85;
}

.banner4-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 50px;
    border: 1px solid #c9a24d;
    color: #c9a24d;
    background: #0000003c;
    font-family: sans-serif;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.banner4-btn:hover {
    border-color: #fff;
    color: #fff;
}

.banner4-indicators button {
    width: 25px !important;
    height: 5px !important;
    border-radius: 50%;
    margin-bottom: 25px;
    background: #c9a45c !important;
}

/* Media Query */
@media (max-width : 1199px) {
    .banner4-title {
        font-size: 60px;
        font-weight: 400;
    }

    .banner4-subtitle {
        font-size: 60px;
        color: #c9a24d;
    }

    .banner4-text {
        max-width: 750px;
        margin: 15px auto 0;
        font-size: 18px;
        opacity: 0.85;
    }
}

@media (max-width : 767px) {
    .banner4-title {
        font-size: 40px;
        font-weight: 400;
        width: 100%;
    }

    .banner4-subtitle {
        font-size: 40px;
        color: #c9a24d;
        width: 100%;
    }

    .banner4-text {
        max-width: 100%;
        margin: 15px auto 0;
        font-size: 18px;
        opacity: 0.85;
    }
}


/* Patisserie Section */
.patisserie {
    padding: 100px 0;
}

.product {
    text-align: center;
    transition: 0.4s ease;
}

.product img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transition: 0.4s ease;
}

.product h5 {
    color: #fff;
    font-size: 24px;
    margin-top: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product:hover img {
    transform: scale(1.2);
}

/* Bakery2 Section */
.bakery2 {
    position: relative;
    height: 700px;
    background: url('images/craft-pastry-bakery2-bg.jpg') top / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.bakery2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.225);
}

.bakery2 .content {
    position: relative;
    z-index: 2;
}

.bakery2 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
}

.bakery2 .gold-text {
    color: #c6a75e;
    font-style: italic;
}

.bakery2 p {
    font-size: 24px;
    font-size: 100px;
    font-family: 'Playfair Display', serif;
}

.bakery2 .btn-gold {
    margin-top: 30px;
    padding: 20px 40px;
    border: 1px solid #c6a75e;
    color: #c6a75e;
    background: transparent;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: 0.4s;
}

.bakery2 .btn-gold:hover {
    border-color: #fff;
    color: fff;
}

/* Paradise Section */
.paradise {
    overflow: hidden;
}

.paradise .left-side,
.paradise .right-side {
    position: relative;
    min-height: 100vh;
    color: white;
}

.paradise .left-side {
    background: url('images/craft-pastry-paradise-bg-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paradise .right-side {
    background: url('images/craft-pastry-paradise-bg-2.jpg') center/cover no-repeat;
    padding: 80px;
}

.paradise .left-side::before,
.paradise .right-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.434);
    z-index: 1;
}

.paradise .left-content,
.paradise .right-side>* {
    position: relative;
    z-index: 2;
}

.paradise h1 {
    font-size: 75px;
    font-weight: 400;
}

.paradise .gold {
    color: #c19f5f;
}

.paradise .gold-box {
    position: absolute;
    top: 48%;
    left: 48%;
    width: 400px;
    height: 400px;
    border: 1px solid #e8c17a;
    animation: rotateBox 10s linear infinite;
    z-index: 2;
}

@keyframes rotateBox {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.paradise .right-heading {
    font-size: 65px;
}

.paradise .right-heading span {
    color: #c6a75e;
}

.paradise .info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 500px;
    padding: 100px 40px;
    background: url('images/chef-right.png') center/cover no-repeat;
    background-color: #2d2627;
    background-blend-mode: overlay;
    color: white;
    z-index: 2;
}

.paradise .info-box small {
    color: #c6a75e;
    letter-spacing: 2px;
    font-size: 12px;
}

.paradise .mission-text {
    font-size: 28px;
    margin-top: 15px;
    line-height: 1.6;
}

.paradise .author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px !important;
}

.paradise .author-info span {
    font-size: 11px;
    letter-spacing: 5px;
    font-family: sans-serif !important;
    color: #c6a75e;
}

.paradise .signature-img {
    width: 100px;
    opacity: 0.8;
}

/* Media Query */
@media (max-width : 991px) {
    .paradise h1 {
        font-size: 70px;
        font-weight: 400;
    }

    .paradise .gold-box {
        width: 350px;
        height: 350px;
    }

    .paradise .right-heading {
        font-size: 55px;
    }
}

@media (max-width : 767px) {
    .paradise h1 {
        font-size: 55px;
        font-weight: 400;
    }

    .paradise .gold-box {
        width: 300px;
        height: 300px;
    }

    .paradise .right-heading {
        font-size: 45px;
    }
}


/* Team Section */
.team-image-wrap {
    position: relative;
    display: inline-block;
    padding: 100px 0;
}

.team-image-wrap img {
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.team-image-wrap:hover img {
    transform: rotate(3deg) scale(1.04);
}

.team-dots {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 320px;
    height: 320px;
    background:
        radial-gradient(circle, rgba(255, 215, 130, 0.677) 1px, transparent 1px);
    background-size: 22px 22px;
    transform: translate(-50%, -50%);
    animation: rotateDots 25s linear infinite;
    z-index: 1;
}

@keyframes rotateDots {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.team-image-wrap h3 {
    color: #fff;
    margin-top: 35px;
    font-size: 30px;
}

.team-image-wrap:hover h3 {
    color: #c6a75e;
}

.team-image-wrap p {
    text-transform: uppercase;
    color: #c6a75e;
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
}

/* Media Query */
@media (max-width: 991px) {
    .team {
        text-align: center;
    }

    .team-feature {
        justify-content: center;
    }

    .team-image-wrap img {
        max-width: 80%;
    }

    .team-dots {
        top: 35%;
        left: 50%;
        width: 350px;
        height: 350px;
    }

    .team-image-wrap h3 {
        font-size: 40px;
    }

    .team-image-wrap p {
        font-size: 18px;
    }
}


/* Booking Section */
.booking {
    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('images/craft-pastry-booking-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
}

.booking h1 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
}

.booking span {
    color: #c6a75e;
}

.booking p {
    color: #bbb;
    font-size: 16px;
    font-family: sans-serif;
}

.read-btn {
    border: 1px solid #c6a75e !important;
    color: #c6a75e !important;
    padding: 15px 40px !important;
    border-radius: 30px !important;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}

.read-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.booking-form {
    background: #040404ba;
    background-image: url('images/testimonial-pattern.png');
    padding: 40px;
    border: 1px solid #c6a75e;
    height: 600px;
}

.booking-form h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.booking-form .form-control,
.booking-form .form-select {
    background: transparent;
    border: 2px solid #444;
    color: #fff !important;
    font-family: sans-serif;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: #c6a75e !important;
    background-color: #000;
    box-shadow: none;
}

.submit-btn {
    border: 1px solid #c6a75e !important;
    background: transparent !important;
    color: #c6a75e !important;
    padding: 20px !important;
    width: 100% !important;
    border-radius: 50px;
    font-family: sans-serif;
    letter-spacing: 3px;
    margin-top: 20px !important;
    transition: 0.4s;
}

.submit-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.hours h2 {
    font-family: 'Playfair Display', serif;
    color: #c6a75e;
    font-size: 40px;
}

.hours ul {
    list-style: none;
}

.hours li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.hours .day {
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
}

.hours .line {
    flex: 1;
    border-bottom: 1px dotted #c6a75e;
    margin: 0 15px;
}

.hours .time {
    color: #c6a75e;
    white-space: nowrap;
    font-size: 20px;
}


/* Partners2 Section */
.partners2 {
    padding: 80px 0;
}

.partners2-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partners2-logo img {
    max-height: 200px;
    max-width: 200px;
    filter: grayscale(100%) brightness(0.85);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partners2-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.2);
}





/* ******************** */
/* parallax-showcase Page */
/* Banner5 Section */
.banner5 {
    height: 1100px;
    background: url('images/parallax-showcase-bg-1.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.banner5::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.641);
}

.banner5 .content2 {
    position: relative;
    z-index: 2;
    margin-top: 25%;
}

.banner5 h1 {
    font-size: 130px;
    color: #c19f5f;
}

.banner5 span {
    color: #fff;
}

.banner5 p {
    font-size: 20px;
    color: #777;
    width: 60%;
    margin: 20px auto;
}

/* Media Query */
@media (max-width: 1199px) {
    .banner5 h1 {
        font-size: 80px;
    }

    .banner5 p {
        font-size: 18px;
    }

    .banner5 .content2 {
        margin-top: 50%;
    }
}

@media (max-width: 767px) {
    .banner5 h1 {
        font-size: 50px;
    }
}

/* Parallax1 Section */
.parallax-section {
    height: 1100px;
    background: url('images/parallax-showcase-bg-2.jpg') no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.097);
}

.parallax-section .content3 {
    position: relative;
    z-index: 2;
    margin-left: 80px;
}

.parallax-section h1 {
    font-size: 65px;
    color: #fff;
}

.parallax-section span {
    color: #c19f5f;
}

.parallax-section p {
    font-size: 20px;
    color: #777;
    width: 45%;
}

.btn-gold {
    margin-top: 25px;
    font-family: sans-serif !important;
    color: #c19f5f !important;
    border: 1px solid #c19f5f !important;
    padding: 25px 70px !important;
    border-radius: 40px !important;
    animation: fadeUp 2s ease forwards;
}

.btn-gold:hover {
    color: #fff !important;
    border-color: #fff !important;
}

/* Media Query */
@media(max-width:768px) {
    .parallax-section h1 {
        font-size: 50px;
    }

    .parallax-section p {
        font-size: 18px;
        color: #fff;
        width: 80%;
    }

    .btn-gold {
        width: 80%;
    }
}


/* Parallax2 Section */
.parallax2 {
    height: 1100px;
    background: url('images/parallax-showcase-bg-3.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.parallax2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.641);
}

.parallax2 .content4 {
    position: relative;
    z-index: 2;
    margin-top: 20%;
}

.parallax2 h1 {
    font-size: 100px;
    color: #fff;
}

.parallax2 span {
    color: #c19f5f;
}

.parallax2 p {
    font-size: 20px;
    color: #777;
    width: 60%;
    margin: 20px auto;
}

.rotating-box {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 380px;
    height: 380px;
    border: 1.5px solid #c19f5f;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBox 20s linear infinite;
    z-index: 1;
}

@keyframes rotateBox {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Media Query */
@media(max-width:1199px) {
    .parallax2 .content4 {
        margin-top: 35%;
    }

    .parallax2 h1 {
        font-size: 65px;
    }

    .rotating-box {
        top: 40%;
        left: 50%;
        width: 300px;
        height: 300px;
    }
}

@media(max-width:768px) {
    .parallax2 .content4 {
        margin-top: 50%;
    }

    .parallax2 h1 {
        font-size: 45px;
    }

    .rotating-box {
        top: 30%;
        left: 50%;
        width: 280px;
        height: 280px;
    }
}

/* Parallax3 Section */
.parallax3 {
    height: 1100px;
    background: url('images/parallax-showcase-bg-4.jpg') no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    position: relative;
    color: #fff;
}

.parallax3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.097);
}

.parallax3 .content4 {
    position: relative;
    z-index: 2;
}

.parallax3 h1 {
    font-size: 65px;
    color: #fff;
}

.parallax3 span {
    color: #c19f5f;
}

.parallax3 p {
    font-size: 20px;
    color: #777;
    width: 45%;
    margin: 20px auto;
}

/* Media Query */
@media(max-width:768px) {
    .parallax3 h1 {
        font-size: 50px;
    }

    .parallax3 p {
        font-size: 18px;
        color: #fff;
        width: 80%;
    }
}

/* Parallax4 Section */
.parallax4 {
    height: 1100px;
    background: url('images/parallax-showcase-bg-5.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.parallax4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.641);
}

.parallax4 .content6 {
    position: relative;
    z-index: 2;
    margin-top: 20%;
}

.parallax4 h1 {
    font-size: 100px;
    color: #fff;
}

.parallax4 span {
    color: #c19f5f;
}

.parallax4 p {
    font-size: 20px;
    color: #777;
    width: 60%;
    margin: 20px auto;
}

/* Media Query */
@media(max-width:1199px) {
    .parallax4 .content6 {
        margin-top: 30%;
    }

    .parallax4 h1 {
        font-size: 70px;
    }
}

@media(max-width:767px) {
    .parallax4 .content6 {
        margin-top: 60%;
    }

    .parallax4 h1 {
        font-size: 50px;
    }
}

/* Parallax5 Section */
.parallax5 {
    height: 1100px;
    background: url('images/parallax-showcase-bg-6.jpg') no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    color: #fff;
}

.parallax5::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.097);
}

.parallax5 .content7 {
    position: relative;
    z-index: 2;
    margin-right: 10%;
}

.parallax5 h1 {
    font-size: 75px;
    color: #fff;
}

.parallax5 span {
    color: #c19f5f;
}

/* Meadi Query */
@media(max-width:1199px) {
    .parallax5 .content6 {
        margin-top: 30%;
    }

    .parallax5 h1 {
        font-size: 60px;
    }
}

@media(max-width:767px) {
    .parallax5 .content6 {
        margin-top: 50%;
    }

    .parallax5 h1 {
        font-size: 40px;
    }
}

/* Parallax6 Section */
.parallax6 {
    height: 1000px;
    background: url('images/parallax-showcase-bg-7.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.parallax6::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.121);
}

.parallax6 .container2 {
    position: relative;
    z-index: 2;
    margin-left: 5%;
}

.parallax6 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.parallax6 .gold {
    color: #c19f5f;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-top: 60px;
}

.feature i {
    font-size: 45px;
    color: #c19f5f;
    margin-right: 40px;
}

.feature h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.feature p {
    color: #aaa;
    font-size: 16px;
    margin-top: 8px;
    font-family: sans-serif;
    width: 80%;
}

/* Media Query */
@media(max-width:992px) {
    .parallax6 {
        background-position: center;
        background-size: cover;
    }

    .parallax6 h1 {
        font-size: 40px;
    }
}





/* ******************** */
/* craft-sweet-delicious Page */
/* Banner6 Section */
.banner6 {
    position: relative;
    height: 1100px;
    overflow: hidden;
}

.banner6 .other {
    position: absolute;
    inset: 0;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1.2s ease-in-out;
    will-change: transform;
}

.banner6::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.468);
    z-index: 1;
}

.banner6 .content8 {
    position: relative;
    z-index: 2;
    margin-top: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner6 h1 {
    font-family: serif;
    font-style: initial;
    letter-spacing: 1px;
    font-size: 140px;
}

.btn-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 12px 35px;
    border-radius: 40px;
    margin-top: 20px;
    transition: 0.4s;
}

.btn-gold:hover {
    background: #d4af37;
    color: #000;
}

.rotating2-box {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 400px;
    height: 400px;
    border: 1.5px solid #c19f5f;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBox 20s linear infinite;
    z-index: 1;
}

@keyframes rotate2Box {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Media Query */
@media(max-width:1199px) {
    .banner6 h1 {
        font-size: 80px;
    }

    .rotating2-box {
        top: 40%;
        left: 50%;
        width: 350px;
        height: 350px;
    }
}

@media(max-width:767px) {
    .banner6 .content8 {
        margin-top: 45%;
    }

    .banner6 h1 {
        font-size: 60px;
    }

    .rotating2-box {
        top: 20%;
        left: 50%;
        width: 250px;
        height: 250px;
    }
}

/* Store4 Section */
.store4 {
    padding: 150px 0;
}

.store4-card {
    text-align: center;
    color: #fff;
    margin-top: 45px;
    transition: transform 0.4s ease;
}

.store4-img-wrap {
    position: relative;
    overflow: hidden;
}

.store4-img-wrap img {
    width: 95%;
    height: 100%;
    transition: transform 0.6s ease;
}

.store4-card:hover .store4-img-wrap img {
    transform: scale(1.2);
}

.store4-content {
    transition: transform 0.4s ease;
}

.store4-card:hover .store4-content {
    transform: translateY(40px);
}

.store4-title {
    font-family: Georgia, serif;
    font-size: 35px !important;
    margin-bottom: 6px;
}

.store4-card:hover .store4-title {
    color: #c19f5f;
}

.store4-price {
    color: #c9a45c;
    font-size: 20px;
}

.store4-btn {
    display: inline-block;
    margin-top: 15px !important;
    padding: 15px 30px !important;
    border: 1px solid #c9a45c !important;
    color: #c9a45c !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.store4-card:hover .store4-btn {
    opacity: 1;
    transform: translateY(-10px);
}

.store4-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

/* Unique2 Section */
.unique2 {
    padding: 80px 0;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.unique2-bg {
    position: absolute;
    inset: 0;
    background: url("images/craft-sweet-unique2-bg.jpg") center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.unique2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.473);
    z-index: 2;
}

.unique2 .container {
    position: relative;
    z-index: 4;
}

.unique2 h2 {
    font-size: 90px;
    font-weight: 400;
}

.unique2 h2 span {
    color: #c9a45c;
    font-style: italic;
}

.rotating4-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border: 2px solid #c9a45c;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBox 20s linear infinite;
    z-index: 7;
}

@keyframes rotate4Box {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Luxury2 Section */
.luxury2 {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.luxury2 h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
    transition: 0.4s;
}

.luxury2 p {
    color: #9e9e9e;
    font-size: 14px;
    line-height: 1.8;
    transition: 0.4s;
}

.luxury2 .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
    transition: 0.4s;
}

.luxury2 .icon-box {
    color: #c9a227;
    font-size: 62px;
    transition: 0.4s;
    margin: 0 30px;
}

.luxury2 .feature-box:hover h3 {
    color: #c9a227;
}

.luxury2 .feature-box:hover p {
    color: #ddd;
}

.luxury2 .feature-box:hover .icon-box {
    transform: rotate(15deg) scale(1.1);
}

.luxury2 .center-image img {
    max-width: 100%;
    height: auto;
    transition: 0.6s;
}

.luxury2 .center-image img:hover {
    transform: scale(1.05);
}

@media(max-width:991px) {
    .luxury2 {
        text-align: center;
    }

    .luxury2 .feature-box {
        justify-content: center;
    }
}

/* Video2 Section */
.video2-section {
    position: relative;
    height: 75vh;
    width: 90%;
    background: url('images/craft-sweet-video2-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video2-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.video2-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.video2-content h1 {
    font-size: 90px;
    font-weight: 400;
    margin-bottom: 40px;
}

.play-btn {
    width: 100px;
    height: 100px;
    border: 1px solid #c9a45c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    color: #c9a45c;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-btn:hover {
    color: #fff;
    border-color: #fff;
}

@media(max-width:768px) {
    .video2-content h1 {
        font-size: 40px;
    }
}

/* Table Section */
.table .container {
    padding: 0;
}

.table .row {
    margin: 0;
}

.table .col-lg-6 {
    padding: 0;
}

.table {
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.table .left-box {
    background: url('images/chef-right.png') center center/cover no-repeat;
    position: relative;
    padding: 90px 90px;
    min-height: 650px;
    border: 1px solid #fff;
    color: #fff;
}

.table .left-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.table .left-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.table h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 35px;
}

.table h1 span {
    color: #d4a24c;
}

.table p {
    color: #b5b5b5;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.table .phone {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.table .phone i {
    color: #d4a24c;
    margin-right: 12px;
}

.table .lux-btn {
    border: 1px solid #d4a24c;
    padding: 16px 48px;
    border-radius: 60px;
    color: #d4a24c;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    transition: 0.4s;
}

.table .lux-btn:hover {
    background: #d4a24c;
    color: #000;
}

.table .right-box {
    background: url('images/testimonial-pattern.png') center center repeat;
    padding: 100px 80px;
    min-height: 650px;
    background-color: #0000008c;
    border: 1px solid #d4a24c;
    position: relative;
    color: #fff;
}

.table .right-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.table .right-content {
    position: relative;
    z-index: 2;
}

.table .right-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #d4a24c;
    margin-bottom: 60px;
}

.table .hour-row {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    font-size: 17px;
}

.table .day {
    white-space: nowrap;
}

.table .line {
    flex: 1;
    border-bottom: 1px dotted #d4a24c;
    margin: 0 18px;
    transform: translateY(-2px);
}

.table .time {
    color: #d4a24c;
    white-space: nowrap;
}

@media(max-width:991px) {
    .table {
        padding: 80px 0;
    }

    .table .left-box,
    .table .right-box {
        padding: 60px 40px;
        min-height: auto;
    }

    .table h1 {
        font-size: 40px;
    }
}





/* ******************** */
/* about-us Page */
/* About-banner Section */
.about-banner {
    position: relative;
    height: 650px;
    background: url('images/about-us-banner.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.about-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.about-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.about-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.about-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.about-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.about-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}

/* Patisserie2 Section */
.patisserie2 {
    padding: 120px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.patisserie2 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
}

.patisserie2 h2 span {
    color: #d4a24c;
    font-style: italic;
}

.patisserie2 p {
    color: #b5b5b5;
    line-height: 1.9;
    width: 80%;
    margin-bottom: 30px;
}

.patisserie2 .download {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 60px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.patisserie2 .download i {
    color: #d4a24c;
    font-size: 35px;
}

.patisserie2 .download:hover {
    color: #d4a24c;
}

.patisserie2 .lux-btn {
    border: 1px solid #d4a24c !important;
    padding: 16px 48px !important;
    border-radius: 60px !important;
    color: #d4a24c !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-size: 13px !important;
    transition: 0.4s;
}

.patisserie2 .lux-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.patisserie2 .image-wrapper {
    position: relative;
}

.patisserie2 .small-img {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.patisserie2 .big-img {
    width: 100%;
    overflow: hidden;
}

.patisserie2 img {
    width: 100%;
    display: block;
    transition: 0.6s;
}

.patisserie2 .small-img:hover img,
.patisserie2 .big-img:hover img {
    transform: scale(1.1);
}

@media(max-width:991px) {
    .patisserie2 {
        padding: 80px 0;
        text-align: center;
    }

    .patisserie2 h2 {
        font-size: 34px;
    }

    .patisserie2 .small-img {
        width: 100%;
    }
}

/* Natural Section */
.natural {
    text-align: center;
    padding: 40px 25px;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.natural i {
    font-size: 60px;
    color: #c6a55c;
    margin-bottom: 25px;
    transition: 0.4s;
}

.natural h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
}

.natural p {
    color: #9a9a9a;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.6;
}

.natural:hover {
    background-color: #111111;
    transform: translateY(-10px);
    box-shadow: 0 0 5px 5px rgba(198, 165, 92, 0.2);
}

.natural:hover i {
    transform: scale(1.2);
    color: #fff;
}

/* Unique3 Section */
.unique3 {
    padding: 80px 0;
    position: relative;
    height: 700px;
    margin-top: 70px;
    overflow: hidden;
}

.unique3-bg {
    position: absolute;
    inset: 0;
    background: url("images/about-us-unique5-bg.jpg") top/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.unique3::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.496);
    z-index: 2;
}

.unique3 .container {
    position: relative;
    z-index: 4;
}

.unique3 h2 {
    font-size: 90px;
    font-weight: 400;
}

.unique3 h2 span {
    color: #c9a45c;
    font-style: italic;
}

.rotating5-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border: 1.5px solid #c9a45c;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBox 20s linear infinite;
    z-index: 7;
}

@keyframes rotate5Box {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}





/* ******************** */
/* our-services Page */
/* Services-banner Section */
.services-banner {
    position: relative;
    height: 650px;
    background: url('images/services-banner-bg.jpg') center top/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.services-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.34);
}

.services-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.services-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.services-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.services-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.services-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.services-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.services-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}

/* Create Section */
.create-section {
    padding: 80px 0;
}

.create-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.create-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: 0.6s ease;
}

.create-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.164);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: 0.5s;
}

.create-content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
}

.create-link {
    color: #c19f5f;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: 0.4s;
}

.create-card:hover img {
    transform: scale(1.1);
}

.create-card:hover .create-content h2 {
    color: #c19f5f;
}

/* Create Feature Section */
.create-feature-section {
    padding: 70px 0;
}

.create-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    transition: 0.4s ease;
    border-radius: 10px;
}

.create-feature-icon {
    font-size: 55px;
    color: #c9a14a;
    transition: 0.4s;
    min-width: 70px;
}

.create-feature-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.create-feature-text {
    color: #a0a0a0;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.create-feature-box:hover {
    transform: translateY(-8px);
}

.create-feature-box:hover .create-feature-title {
    color: #c9a14a;
}

.create-feature-box:hover .create-feature-icon {
    transform: scale(1.15) rotate(15deg);
    color: #fff;
}

/* Mission Section */
.mission-section {
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 900px;
    object-fit: cover;
}

.mission-content {
    background-color: #2b2422;
    background-image: url('images/chef-right.png');
    background-size: 90%;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 80px;
    color: #fff;
    display: flex;
    align-items: center;
}

.mission-inner {
    max-width: 350px;
}

.mission-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    color: #c9a14a;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 32px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.mission-author {
    font-size: 18px;
}

.mission-role {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a14a;
}

@media(max-width:991px) {
    .mission-content {
        padding: 60px 30px;
        text-align: center;
    }

    .mission-image img {
        height: 500px;
    }

    .mission-text {
        font-size: 20px;
    }
}

/* Create2 Section */
.create2-card {
    position: relative;
    background: #2b2422;
    color: #fff;
    padding: 60px 40px;
    transition: 0.4s ease;
    border: 1px solid transparent;
    height: 500px;
    z-index: 2;
}

.create2-card:hover {
    transform: translateY(-15px);
    border-color: #c9a14a;
}

.create2-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.create2-card-image {
    background: url('images/services-create2-bg.jpg') no-repeat center;
    background-size: cover;
}

.create2-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: auto;
    background-color: #0000008f;
}

.create2-card-image>* {
    position: relative;
}

.create2-plan {
    letter-spacing: 3px;
    font-size: 13px;
    color: #c9a14a;
    margin-bottom: 20px;
}

.create2-price {
    font-size: 40px;
    margin-bottom: 30px;
}

.create2-price span {
    font-size: 18px;
    opacity: 0.7;
}

.create2-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.create2-features li {
    margin-bottom: 15px;
    font-size: 16px;
    font-family: sans-serif;
}

.create2-features i {
    margin-right: 10px;
    color: #c9a14a;
}

.create2-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #c9a14a;
    border-radius: 50px;
    color: #c9a14a;
    text-decoration: none;
    transition: 0.4s;
}

.create2-btn:hover {
    border-color: #fff;
    color: #fff;
}

/* Media Query */
@media(max-width:991px) {
    .create2-card {
        margin-bottom: 30px;
    }
}





/* ******************** */
/* testimonials Page */
/* testimonials-banner Section */
.testimonials-banner {
    position: relative;
    height: 650px;
    background: url('images/testimonial-bg.jpg') center top/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.testimonials-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.testimonials-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.testimonials-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.testimonials-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.testimonials-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.testimonials-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.testimonials-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.testimonials-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}

/* Feedback Section */
.feedback-section {
    background: #2b2422;
    padding: 120px 0;
    margin: 0 200px;
    color: #fff;
}

.feedback-subtitle {
    color: #c9a14a;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 15px;
}

.feedback-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.feedback-line {
    width: 80px;
    height: 2px;
    background: #c9a14a;
    margin: 15px auto 30px;
    position: relative;
}

.feedback-line::before,
.feedback-line::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #c9a14a;
    top: 0;
}

.feedback-line::before {
    left: -25px;
}

.feedback-line::after {
    right: -25px;
}

.feedback-text {
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.7;
}

.feedback-input {
    background: #1f1a18 !important;
    border: 1px solid #444 !important;
    border-radius: 50px !important;
    padding: 18px 25px !important;
    color: #fff !important;
    transition: 0.3s;
}

.feedback-input:focus {
    border-color: #c9a14a !important;
    box-shadow: none !important;
    background: #1f1a18 !important;
    color: #fff !important;
}

.feedback-textarea {
    border-radius: 30px !important;
    height: 180px !important;
    resize: none !important;
}

.feedback-btn {
    margin-top: 30px !important;
    padding: 15px 75px !important;
    border: 1px solid #c9a14a !important;
    border-radius: 50px !important;
    background: transparent !important;
    color: #c9a14a !important;
    letter-spacing: 2px !important;
    transition: 0.3s;
}

.feedback-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

/* Media Query */
@media(max-width:768px) {
    .feedback-title {
        font-size: 34px;
    }
}





/* ******************** */
/* faq Page */
/* FAQ-banner Section */
.faq-banner {
    position: relative;
    height: 650px;
    background: url('images/faq-banner.jpg') top center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.faq-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.faq-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.faq-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.faq-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.faq-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.faq-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.faq-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.faq-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}

/* FAQ Section */
.faq-section {
    background: #0b0b0e;
    padding: 110px 0;
    font-family: serif;
    color: #fff;
}

.faq-left {
    padding-right: 60px;
}

.faq-left h4 {
    color: #d4a84f;
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: 500;
}

.faq-left p {
    color: #9c9c9c;
    line-height: 1.9;
    font-family: sans-serif;
    font-size: 13px;
    margin-right: 25px !important;
}

.faq-left ul {
    margin-top: 25px;
    padding-left: 18px;
    font-family: sans-serif;
}

.faq-left ul li {
    margin-bottom: 15px;
    color: #cfcfcf;
    list-style: disc !important;
}

.help-box {
    margin-top: 90px;
}

.read-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border: 1px solid #d4a84f;
    color: #d4a84f;
    text-decoration: none;
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.read-btn:hover {
    border-color: #fff;
    color: #fff;
}

.faq-section .accordion-item {
    background: #2b2426;
    border: none !important;
    margin-bottom: 15px;
    width: 100%;
    border-radius: none !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: #2b2426;
    color: #fff;
    font-size: 20px;
    padding: 18px 20px;
    box-shadow: none;
    position: relative;
    transition: 0.3s ease;
}

.faq-section .accordion-button::after {
    display: none;
}

.faq-section .accordion-button::before {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: 0.3s;
}

.faq-section .accordion-button:not(.collapsed)::before {
    content: "−";
}

.faq-section .accordion-button:hover {
    background: #c5a35b;
    color: #000;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #c5a35b;
    color: #000;
}

.faq-section .accordion-body {
    background: #0c0c0c;
    color: #ccc;
    padding: 25px 30px;
    font-family: sans-serif;
}

.faq-section .accordion-body ul {
    padding-left: 20px;
}

.faq-section .accordion-body ul li {
    margin-bottom: 12px;
    list-style: disc !important;
}





/* ******************** */
/* gallery Page */
/* Gallery-banner Section */
.gallery-banner {
    position: relative;
    height: 650px;
    background: url('images/gallery-banner.jpg') top center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.gallery-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.537);
}

.gallery-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.gallery-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.gallery-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.gallery-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.gallery-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.gallery-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.gallery-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}

/* Gallery2 Section */
.gallery2 {
    padding: 80px 0;
    background: #111;
}

.gallery2 .img-box {
    overflow: hidden;
    position: relative;
    height: 500px;
}

.gallery2 img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    display: block;
}

.gallery2 .img-box:hover img {
    transform: scale(1.2);
}





/* ******************** */
/* 404 Page */
/* Error Section */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
}

.error-section img {
    max-width: 450px;
    margin-bottom: 40px;
}

.error-section h1 {
    font-size: 64px;
    color: #d4a84f;
    font-weight: 500;
    margin-bottom: 20px;
}

.error-section p {
    color: #9c9c9c;
    font-size: 16px;
    max-width: 500px;
    font-family: sans-serif;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.home-btn {
    display: inline-block;
    padding: 18px 60px;
    border: 1px solid #d4a84f;
    border-radius: 50px;
    color: #d4a84f;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
    transition: 0.3s;
}

.home-btn:hover {
    border-color: #fff;
    color: #fff;
}





/* ******************** */
/* shop-us Page */
/* Shop-banner Section */
.shop-banner {
    position: relative;
    height: 650px;
    background: url('images/shop-banner.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.shop-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.448);
}

.shop-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.shop-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.shop-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shop-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.shop-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.shop-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.shop-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.shop-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}


/* Shop Section */
.shop {
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.shop .shop-card {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.shop .dots {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 320px;
    height: 320px;
    background:
        radial-gradient(circle, rgba(255, 215, 130, 0.4) 1px, transparent 1px);
    background-size: 22px 22px;
    transform: translate(-50%, -50%);
    animation: rotateDots 25s linear infinite;
    z-index: 1;
}

@keyframes rotateDots {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.shop .shop-img {
    position: relative;
    z-index: 2;
    width: 250px;
    transition: transform 0.4s ease;
}

.shop .shop-card:hover .shop-img {
    transform: scale(1.3);
}

.shop .add-cart {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 3;
}

.shop .shop-card:hover .add-cart {
    opacity: 1;
}

.shop h5 {
    margin-top: 60px !important;
    font-size: 20px;
    transition: all 0.5s ease;
}

.shop .price {
    color: #c19f5f;
    font-size: 18px;
    transition: all 0.5s ease;
}

.shop .btn-outline-gold {
    border: 1px solid #c19f5f !important;
    color: #c19f5f !important;
    border-radius: 30px !important;
    padding: 12px 25px !important;
}

.shop .btn-outline-gold:hover {
    background: #d4af37 !important;
    color: #000 !important;
}

.shop .shop-card:hover h5 {
    transform: translateY(80px);
}

.shop .shop-card:hover .price {
    transform: translateY(40px);
}






/* ******************** */
/* cart Page */
/* Cart Section */

.cart {
    padding: 120px 0;
    font-family: sans-serif;
}

.cart .cart-message {
    background: linear-gradient(to right, #3a2f33, #2b2426);
    padding: 20px 30px;
    color: #fff;
    border-top: 3px solid #d4a84f;
    font-size: 16px;
}

.cart .cart-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 60px;
    border: 1px solid #d4a84f;
    border-radius: 50px;
    color: #d4a84f;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
    transition: 0.3s ease;
}

.cart .cart-btn:hover {
    border-color: #fff;
    color: #fff;
}







/* ******************** */
/* Blog Page */
/* Blog2 Section */
.blog2 {
    padding: 100px 0;
    background: #0b0c10;
}

.blog2 .blog-card {
    margin-bottom: 70px;
}

.blog2 .img-box {
    position: relative;
    overflow: hidden;
}

.blog2 .img-box img {
    width: 100%;
    transition: 0.5s ease;
    display: block;
}

.blog2 .blog-card:hover img {
    transform: scale(1.05);
}

.blog2 .category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #111;
    color: #d4a84f;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 2px;
}

.blog2 .date2 {
    color: #8c8c8c;
    font-size: 15px;
    font-family: sans-serif;
    margin-top: 20px;
}

.blog2 h3 {
    color: #fff;
    font-size: 34px;
    margin: 10px 0 15px;
    transition: 0.3s;
}

.blog2 .blog-card:hover h3 {
    color: #d4a84f;
}

.blog2 p {
    color: #9c9c9c;
    line-height: 1.8;
    font-family: sans-serif;
    font-size: 17px;
}

.blog2 .blog-highlight {
    background: linear-gradient(to right, #3a2f33, #2b2426);
    padding: 60px 70px;
    margin-top: 80px;
    margin-bottom: 80px;
    color: #fff;
}







/* ******************** */
/* Contacts Page */
/* Contacts-banner Section */
.contact-banner {
    position: relative;
    height: 650px;
    background: url('images/contact-banner.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.518);
}

.contact-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.contact-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-banner .breadcrumb-links {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-banner .breadcrumb-links .links {
    color: #d4a24c;
    text-decoration: none;
    transition: 0.3s;
}

.contact-banner .breadcrumb-links .links:hover {
    color: #fff;
}

.contact-banner .breadcrumb-links .links2 {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-banner .breadcrumb-links .links2:hover {
    color: #d4a24c;
}

.contact-banner .breadcrumb-links span {
    color: #fff;
    margin: 0 10px;
}

/* Contact2 Section */
.contact2 {
    padding: 80px 0;
    color: #ccc;
    font-family: sans-serif;
}

.contact2 .contact-box {
    text-align: center;
    padding: 20px;
    transition: 0.4s;
}

.contact2 .contact-box i {
    font-size: 50px;
    color: #c9a15b;
    margin-bottom: 25px;
    transition: 0.4s;
}

.contact2 h5 {
    color: #fff;
    margin-bottom: 10px;
    font-family: serif;
    font-size: 25px;
}

.contact2 p {
    margin: 0;
    font-size: 17px;
    color: #9a9a9a;
}

.contact2 .divider {
    border-right: 2px dotted #555;
}

.contact2 .contact-box:hover {
    transform: translateY(-8px);
}

.contact2 .contact-box:hover i {
    color: #fff;
    transform: scale(1.2);
}

@media(max-width:768px) {
    .contact2 .divider {
        border-right: none;
        border-bottom: 1px dotted #555;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

/* Contact Map Section */
.contact-map {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Section */
.contact-form {
    padding: 150px 0;
    color: #fff;
}

.contact-form h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-form .underline {
    width: 80px !important;
    height: 3px !important;
    background: #c9a15b !important;
    margin: 10px auto 50px !important;
    border-radius: 10px !important;
}

.contact-form .form-control {
    background: transparent;
    border: 1px solid #333 !important;
    border-radius: 40px !important;
    color: #fff !important;
    margin-bottom: 25px;
}

.contact-form textarea.form-control {
    border-radius: 30px !important;
}

.contact-form .form-control:focus {
    box-shadow: none !important;
    border-color: #c9a15b !important;
    background: transparent !important;
    color: #fff;
}

.contact-form .btn-submit {
    border: 1px solid #c9a15b;
    color: #c9a15b;
    padding: 24px 75px !important;
    border-radius: 40px;
    background: transparent;
    letter-spacing: 3px;
    transition: 0.4s;
}

.contact-form .btn-submit:hover {
    border-color: #fff;
    color: #fff;
}