* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.navbar {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    height: 140px;
    margin-top: -10px;
    background: linear-gradient(90deg,
            rgba(245, 245, 245, 0.82) 0%,
            rgba(231, 228, 230, 0.82) 18%,
            rgba(172, 170, 175, 0.82) 38%,
            rgba(206, 155, 74, 0.82) 72%,
            rgba(121, 77, 38, 0.88) 100%);
    backdrop-filter: blur(18px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
    z-index: 999;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.22) 50%,
            transparent 80%);
    transform: skewX(-25deg);
    animation: luxuryShine 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes luxuryShine {

    0% {
        left: -140%;
    }

    100% {
        left: 160%;
    }

}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {

    width: 170px;
    height: 170px;
    margin-top: 18px;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }

}


.logo-title h1 {
    margin: 0;
    font-size: 32px;
    color: #6b3e26;
    font-weight: 700;
}

.logo-title span {
    font-size: 15px;
    color: #aa5c31;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-right: 10px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #4d1700;
    font-size: 20px;
    font-weight: 500;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


.nav-links a:hover {
    color: #d2691e;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: #d2691e;
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #d2691e,
            #b45309);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.nav-links .btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 25px rgba(210, 105, 30, 0.35);
    color: white;
}

.map-embed {
    width: 150px;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    margin-right: 100px;
    margin-top: 10px;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-embed:hover {
    transform:
        translateY(-6px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

.navbar {
    animation: navbarReveal 1.2s ease forwards;
}

@keyframes navbarReveal {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.nav-links span {
    font-size: 19px;
    font-weight: 600;
    color: #4b2e2e;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.nav-links span:hover {
    transform: translateY(-2px);
}

.category-strip {
    width: 100%;
    background: linear-gradient(90deg,
            #794d26 100%,
            #ce9b4a 72%,
            #acaaaf 38%,
            #e7e4e6 18%,
            #f5f5f5 0%);
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 99;
}

.category-strip a {
    text-decoration: none;
    color: #ffffff;
    font-size: 19px;
    font-weight: 500;
    transition: 0.3s;
}

.category-strip a:hover {
    color: #000000;
}

.order-btn {
    background: #d2691e;
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 1px;
}

.order-btn:hover {
    background-color: #a94f14;
    color: white;
}

/* =========================
   Large Tablets (1200px)
========================= */
@media (max-width:1200px) {

    .category-strip {
        gap: 30px;
        padding: 12px 18px;
    }

    .category-strip a {
        font-size: 17px;
    }

}

/* =========================
   Tablets (992px)
========================= */
@media (max-width:992px) {

    .category-strip {
        gap: 22px;
        padding: 12px 15px;
    }

    .category-strip a {
        font-size: 16px;
    }

    .order-btn {
        padding: 9px 16px;
        font-size: 12px;
    }

}

/* =========================
   Mobile Landscape (768px)
========================= */
@media (max-width:768px) {

    .category-strip {
        gap: 18px;
        padding: 12px;
        justify-content: center;
    }

    .category-strip a {
        font-size: 15px;
    }

    .order-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

}

/* =========================
   Mobile (576px)
========================= */
@media (max-width:576px) {

    .category-strip {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 18px;
        padding: 12px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-strip::-webkit-scrollbar {
        display: none;
    }

    .category-strip a {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 14px;
    }

}

.luxury-showcase {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5f0 0%, #ecd9be 50%, #eee7de 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 6%;
    position: relative;
    overflow: hidden;
}

.showcase-content {
    flex: 1;
    max-width: 650px;
    text-align: center;
    z-index: 2;
}

.mini-text {
    color: #1f1f1f;
    font-size: 18px;
    font-family: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.showcase-content h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 300;
    color: #1f1f1f;
    margin-bottom: 30px;
    font-family: serif;
}

.showcase-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.showcase-btn {
    display: inline-block;
    padding: 18px 42px;
    background: rgb(210, 105, 30);
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.4s ease;
}

.showcase-btn:hover {
    background: rgb(161, 96, 11);
    color: white;
}

.showcase-img {
    flex: 1;
    position: relative;
}

.showcase-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    /* or 3/4 depending on your image */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15);
}

.left-img {
    transform: translateY(-70px);
}

.right-img {
    transform: translateY(0px);
}

.luxury-showcase::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle,
            rgba(212, 175, 55, 0.5),
            transparent 70%);
    bottom: -60px;
    right: 20%;
    border-radius: 50%;
}

.luxury-showcase {
    animation:
        sectionReveal 1.4s ease forwards;
}

@keyframes sectionReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

}

.left-img {
    transform: translateY(-70px);
    animation:
        floatLeft 6s ease-in-out infinite;
}

.right-img {
    transform: translateY(0px);
    animation:
        floatRight 7s ease-in-out infinite;
}

@keyframes floatLeft {

    0% {
        transform: translateY(-70px);
    }

    50% {
        transform: translateY(-90px);
    }

    100% {
        transform: translateY(-70px);
    }

}

@keyframes floatRight {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

.showcase-img img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.18);
    transition:
        transform 1s ease,
        box-shadow 0.8s ease,
        filter 0.8s ease;
    filter:
        brightness(0.98) contrast(1.03);
}

.showcase-img:hover img {
    transform:
        scale(1.04) rotate(-1deg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.22);
    filter:
        brightness(1.02) contrast(1.05);
}

.mini-text {
    animation:
        fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.showcase-content h1 {
    animation:
        fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.showcase-content p {
    animation:
        fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.showcase-btn {
    animation:
        fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 1.1s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

}

.showcase-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 300;
    color: #1f1f1f;
    margin-bottom: 30px;
    font-family: serif;
    text-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.5s ease;
}

.showcase-content h1:hover {

    transform: scale(1.02);
}

.showcase-btn {

    display: inline-block;

    padding: 18px 42px;

    border: 1px solid #c9a15d;

    color: #1f1f1f;

    text-decoration: none;

    letter-spacing: 1px;
    font-weight: 600;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        background 0.5s ease;
}

.showcase-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);

    transition: 0.8s ease;
}

.showcase-btn:hover::before {
    left: 120%;
}

.showcase-btn:hover {

    background: #c9a15d;
    color: white;
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(201, 161, 93, 0.35);
}

.luxury-showcase::before {

    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background:
        radial-gradient(circle,
            rgba(212, 175, 55, 0.22),
            transparent 70%);

    bottom: -100px;
    right: 12%;
    border-radius: 50%;
    animation:
        glowMove 8s ease-in-out infinite;
}

@keyframes glowMove {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }

}

/* =========================================
   1400px
========================================= */
@media (max-width:1400px) {

    .luxury-showcase {
        gap: 50px;
        padding: 70px 5%;
    }

    .showcase-content h1 {
        font-size: 62px;
    }

}

/* =========================================
   1200px
========================================= */
@media (max-width:1200px) {

    .luxury-showcase {
        gap: 40px;
        padding: 70px 5%;
    }

    .showcase-content h1 {
        font-size: 54px;
    }

    .showcase-content p {
        font-size: 18px;
    }

}

@media (max-width:992px) {

    .luxury-showcase {
        flex-direction: column;
        gap: 45px;
        padding: 60px 6%;
    }

    /* Content first */
    .showcase-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    /* Hide left image */
    .left-img {
        display: none;
    }

    /* Show only right image below content */
    .right-img {
        order: 2;
        display: block;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        transform: none;
        animation: none;
    }

    .right-img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .showcase-content h1 {
        font-size: 48px;
    }

    .showcase-content p {
        font-size: 18px;
    }

}

/* =========================================
   768px
========================================= */
@media (max-width:768px) {

    .luxury-showcase {
        padding: 55px 25px;
        gap: 35px;
    }

    .mini-text {
        font-size: 15px;
    }

    .showcase-content h1 {
        font-size: 40px;
    }

    .showcase-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .showcase-btn {
        padding: 15px 30px;
    }

}

/* =========================================
   576px
========================================= */
@media (max-width:576px) {

    .luxury-showcase {
        padding: 45px 18px;
    }

    .mini-text {
        font-size: 14px;
    }

    .showcase-content h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .showcase-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .showcase-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .luxury-showcase::before {
        width: 220px;
        height: 220px;
    }

}

/* =========================================
   400px
========================================= */
@media (max-width:400px) {

    .luxury-showcase {
        padding: 40px 15px;
    }

    .mini-text {
        font-size: 13px;
    }

    .showcase-content h1 {
        font-size: 27px;
    }

    .showcase-content p {
        font-size: 15px;
    }

}

/* ==========================================
   ABOUT BAKERY
========================================== */

.about-bakery {
    width: 100%;
    min-height: 100vh;
    padding: 100px 8%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    overflow: hidden;
    position: relative;
}

/* ===========================
   LEFT CONTENT
=========================== */

.about-left {
    flex: 1;
    max-width: 100%;
    z-index: 2;
}

.about-container {
    max-width: 100%;
    display: flex;
}

.about-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c59d5f;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-left h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 400;
    font-family: serif;
    color: #1d1d1d;
    margin-bottom: 30px;
}

.about-desc {
    font-size: 19px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
}

/* ===========================
   STATS
=========================== */

.about-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.stat-box {
    min-width: 170px;
    padding: 22px 28px;
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .14);
}

.stat-box h2 {
    font-size: 38px;
    color: #c59d5f;
    margin-bottom: 8px;
}

.stat-box span {
    color: #666;
    font-size: 15px;
}

/* ===========================
   BUTTONS
=========================== */

.about-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.primary-btn {
    background: linear-gradient(135deg, #d2691e, #b45309);
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(210, 105, 30, .35);
}

.secondary-btn {
    border: 1px solid #c59d5f;
    color: #1d1d1d;
}

.secondary-btn:hover {
    background: #c59d5f;
    color: #fff;
}

/* ===========================
   RIGHT SIDE
=========================== */

.about-right {
    flex: 1;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 700px;
}

/* Glow */

.image-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(212, 175, 55, .22),
            rgba(255, 247, 237, .8));
    filter: blur(10px);
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
}

/* Image */

.about-right img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 22px;
    object-fit: cover;
    animation: imageFloat 6s ease-in-out infinite;
    transition: .6s;
}

.about-right img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

/* Floating Review */

.floating-review {
    position: absolute;
    left: 20px;
    bottom: 60px;
    width: 260px;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            #f8f5f0,
            #ecd9be,
            #eee7de);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
    z-index: 5;
    animation: reviewFloat 5s ease-in-out infinite;
    transition: .4s;
}

.floating-review:hover {
    transform: translateY(-8px);
}

.floating-review h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1d1d1d;
}

.floating-review p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes imageFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes glowPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

@keyframes reviewFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px) {

    .about-left h1 {
        font-size: 56px;
    }

    .about-right img {
        max-width: 620px;
    }

    .image-circle {
        width: 520px;
        height: 520px;
    }

}

@media(max-width:992px) {

    .about-bakery {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }

    .about-left {
        order: 1;
        max-width: 100%;
    }

    .about-right {
        order: 2;
        min-height: auto;
        width: 100%;
    }

    .about-stats,
    .about-buttons {
        justify-content: center;
    }

    .about-right img {
        max-width: 550px;
    }

    .image-circle {
        width: 420px;
        height: 420px;
    }

    .floating-review {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 25px auto 0;
    }

}

@media(max-width:768px) {

    .about-bakery {
        padding: 70px 25px;
    }

    .about-left h1 {
        font-size: 42px;
    }

    .about-desc {
        font-size: 17px;
    }

    .about-right img {
        max-width: 100%;
    }

    .image-circle {
        width: 320px;
        height: 320px;
    }

}

@media(max-width:576px) {

    .about-bakery {
        padding: 60px 20px;
    }

    .about-left h1 {
        font-size: 34px;
    }

    .about-tag {
        font-size: 16px;
    }

    .about-desc {
        font-size: 16px;
    }

    .image-circle {
        display: none;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }

    .stat-box {
        width: 100%;
    }

}

@media(max-width:400px) {

    .about-left h1 {
        font-size: 28px;
    }

    .about-desc {
        font-size: 15px;
    }

    .floating-review {
        width: 100%;
    }

}



.signature-products {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5f0 0%, #ecd9be 50%, #eee7de 100%);
    padding: 120px 8%;
    margin-top: -80px;
    position: relative;
    overflow: hidden;
}

.signature-top {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
}

.signature-tag,
.signature-top h1,
.signature-top p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.signature-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;

    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.signature-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.signature-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.15);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-content {
    padding: 35px;
}

.signature-top h1 {
    font-size: 72px;
    line-height: 1.1;

    color: #1d1d1d;

    margin-bottom: 30px;

    font-family: serif;
    font-weight: 400;
}

.signature-top p {
    font-size: 20px;
    line-height: 1.9;
    color: #666;
}

.signature-tag {
    display: inline-block;
    color: #c8a46b;
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 20px;
}

.signature-content span {
    color: #c8a46b;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
}

.signature-content h2 {
    font-size: 34px;
    color: #1d1d1d;
    margin-bottom: 18px;
    font-family: serif;
    font-weight: 400;
}

.signature-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 20px;
}

.signature-content a {
    text-decoration: none;
    color: #1d1d1d;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.signature-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #c8a46b;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.signature-content a:hover::after {
    transform: scaleX(1);
}

.signature-content a:hover {
    color: #c8a46b;
}

.signature-products::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.signature-products.active .signature-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.signature-products.active .signature-top h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.signature-products.active .signature-top p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.signature-products.active .signature-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.signature-products.active .signature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.signature-products.active .signature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.signature-products.active .signature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.signature-products.active .signature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.signature-products.active .signature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.signature-products.active .signature-card:nth-child(6) {
    transition-delay: 0.6s;
}

.signature-products.active .signature-image img {
    transform: scale(1);
}

@media(max-width:992px) {

    .signature-top h1 {
        font-size: 52px;
    }

}

@media(max-width:600px) {

    .signature-top h1 {
        font-size: 40px;
    }

    .signature-top p {
        font-size: 16px;
    }

    .signature-image {
        height: 320px;
    }

    .signature-content h2 {
        font-size: 28px;
    }

}

.customer-reviews {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5f0 0%, #ecd9be 50%, #eee7de 100%);
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

.review-top {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
}

.review-tag {
    display: inline-block;
    color: #c59d5f;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.review-top h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
    font-family: serif;
    font-weight: 400;
}

.review-top p {
    color: #666;
    font-size: 20px;
    line-height: 1.9;
}

.review-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.review-card {
    background: white;
    padding: 45px 38px;
    border-radius: 30px;
    position: relative;
    transition: 0.5s ease;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.12);
}

.featured-review {
    background:
        linear-gradient(135deg,
            #fff6e8,
            #ffffff);

    transform: scale(1.04);
}

.review-stars {
    font-size: 26px;
    color: #d4af37;
    margin-bottom: 28px;
    letter-spacing: 4px;
}

.review-text {
    color: #555;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 40px;
}


.review-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.review-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h3 {
    color: #1d1d1d;
    font-size: 20px;
    margin-bottom: 6px;
}

.review-user span {
    color: #888;
    font-size: 20px;
}


.customer-reviews::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;

    background:
        radial-gradient(circle,
            rgba(212, 175, 55, 0.12),
            transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.review-tag,
.review-top h1,
.review-top p,
.review-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
    transform: translateY(60px) scale(0.98);
}


.customer-reviews.active .review-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.customer-reviews.active .review-top h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.customer-reviews.active .review-top p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.customer-reviews.active .review-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.customer-reviews.active .review-card:nth-child(1) {
    transition-delay: 0.1s;
}

.customer-reviews.active .review-card:nth-child(2) {
    transition-delay: 0.2s;
}

.customer-reviews.active .review-card:nth-child(3) {
    transition-delay: 0.3s;
}

.customer-reviews.active .review-card:nth-child(4) {
    transition-delay: 0.4s;
}

.review-card {
    will-change: transform;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.01);
}

.review-user img {
    transition: transform 0.5s ease;
}

.review-card:hover .review-user img {
    transform: scale(1.08);
}

@media(max-width:992px) {

    .review-top h1 {
        font-size: 52px;
    }

    .featured-review {
        transform: none;
    }

}

@media(max-width:600px) {

    .review-top h1 {
        font-size: 40px;
    }

    .review-top p {
        font-size: 16px;
    }

    .review-card {
        padding: 35px 28px;
    }

}


.contact-section {
    width: 100%;
    min-height: 100vh;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8f4ef 100%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 70px;

    padding: 120px 8%;

    overflow: hidden;
}

.contact-left {
    flex: 1;
}

.contact-tag {
    display: inline-block;
    color: #c59d5f;
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-left h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1d1d1d;
    margin-bottom: 28px;
    font-family: serif;
    font-weight: 400;
}

.contact-desc {
    color: #666;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 50px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 26px;
    border-radius: 22px;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.07);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #f6ead7,
            #fff8ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.contact-box h3 {
    font-size: 24px;
    color: #1d1d1d;
    margin-bottom: 8px;
}

.contact-box p {
    color: #666;
    font-size: 20px;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
}

.contact-right iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 30px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-tag,
.contact-left h1,
.contact-desc,
.contact-box,
.contact-right iframe {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-box {
    transform: translateY(60px);
}

.contact-right iframe {
    transform: scale(1.05);
}

.contact-section.active .contact-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.contact-section.active .contact-left h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.contact-section.active .contact-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.contact-section.active .contact-box {
    opacity: 1;
    transform: translateY(0);
}

.contact-section.active .contact-box:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-section.active .contact-box:nth-child(2) {
    transition-delay: 0.2s;
}

.contact-section.active .contact-box:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-section.active .contact-right iframe {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}


.contact-box:hover {
    transform: translateY(-8px);
    transition: 0.4s ease;
}

@media(max-width:1100px) {

    .contact-section {
        flex-direction: column;
        display: block;
    }

}

@media(max-width:768px) {

    .contact-left h1 {
        font-size: 48px;
    }

    .contact-right iframe {
        height: 500px;
    }

}

@media(max-width:500px) {

    .contact-left h1 {
        font-size: 38px;
    }

    .contact-desc {
        font-size: 16px;
    }

}

.luxury-footer {
    width: 100%;
    background: linear-gradient(90deg,
            rgba(245, 245, 245, 0.82) 0%,
            rgba(231, 228, 230, 0.82) 18%,
            rgba(172, 170, 175, 0.82) 38%,
            rgba(206, 155, 74, 0.82) 72%,
            rgba(121, 77, 38, 0.88) 100%);
    padding: 100px 8% 40px;
    color: white;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h1 {
    font-size: 52px;
    font-family: serif;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}

.footer-brand span {
    color: #000000;
    letter-spacing: 3px;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.9;
    font-size: 20px;
    max-width: 420px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: rgb(0, 0, 0);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 20px;
    transition: 0.3s ease;
}

.footer-contact p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.footer-line {
    width: 100%;
    height: 1px;
    background:
        rgba(255, 255, 255, 0.12);
    margin-bottom: 35px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.footer-socials a {
    color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

@media(max-width:1100px) {

    .footer-top {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:700px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand h1 {
        font-size: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #794d26;
    color: #ffffff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 1000;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: #ffffff;
    color: #794d26;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}



.menu-section {
    padding: 120px 0;
    overflow: hidden;
    background-color: #fff;
}

.menu-heading {
    text-align: center;
    margin-bottom: 70px;
}

.menu-heading h5 {
    color: #c8a46b;
    letter-spacing: 3px;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
}


.menu-heading h2 {
    color: #000000;
    font-size: 72px;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: serif;
    font-weight: 400;
}

.menu-heading p {
    font-size: 20px;
    line-height: 1.9;
    color: #666;
}


.menu-slider {
    overflow: hidden;
    width: 100%;
}

.menu-track {
    display: flex;
    gap: 35px;
    width: max-content;

    animation: foodTrain 25s linear infinite;
}

.food-card {
    width: 320px;
    background: #f0c578;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(247, 160, 0, 0.15);
    transition: .5s ease;
}

.food-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    transition: .8s ease;
}

.food-card {
    position: relative;
    width: 340px;
    height: 430px;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    transition: .6s cubic-bezier(.19, 1, .22, 1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, .35);

    flex-shrink: 0;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 1.2s ease;
}

.food-card h3 {
    color: #000000;
    text-align: center;
    padding: 25px;
    font-size: 24px;
}

.food-card:hover {
    transform: translateY(-15px);
    border-color: #f0c578;
    box-shadow:
        0 20px 50px rgba(240, 197, 120, .15);
}

.food-card:hover img {
    transform: scale(1.12);
}

@keyframes foodTrain {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {

    .menu-section {
        padding: 80px 20px;
    }

    .menu-heading {
        margin-bottom: 40px;
    }

    .menu-heading h5 {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .menu-heading h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .menu-track {
        gap: 20px;
    }

    .food-card {
        width: 260px;
        height: 360px;
        border-radius: 20px;
    }

    .food-card h3 {
        font-size: 18px;
        padding: 15px;
    }

    /* optional but important: reduce motion on mobile */
    .menu-track {
        animation-duration: 40s;
    }
}