* {
    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: 200px;
    height: 200px;
    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: 38px;
    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);
}

/*======================
Hero Section
======================*/

.cake-hero{
    background: linear-gradient(135deg, #f8f5f0 0%, #ecd9be 50%, #eee7de 100%);
    padding:90px 0;
    overflow:hidden;
}

.hero-container{
    width:90%;
    max-width:1650px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

}

/* Left */

.hero-content{

    flex:1;

}

.section-tag{
    display:inline-block;
    color: #c59d5f;
    font-size: 21px;
    letter-spacing:3px;
    font-weight: 700;
    margin-bottom:20px;
    text-transform:uppercase;
}


.hero-content h1{
    font-size: 70px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
    font-family:serif;
    font-weight: 400;
}


.divider{
    display:flex;
    align-items:center;
    gap:18px;
    color:#d86f84;
    margin-bottom:30px;

}

.divider span{
    width:90px;
    height:2px;
    background:#edd2d2;

}

.hero-content p{
    color:#3f3f3f;
    font-size:20px;
    line-height:1.9;
    max-width:550px;
    margin-bottom:55px;

}

.hero-features{
    display:flex;
    gap:25px;
    margin-top: -40px;
    margin-left: -40px;
}

.feature-box{

    flex:1;

    text-align:center;

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.icon{

    width:75px;

    height:75px;

    border:2px solid #efcfd4;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:30px;

    color:#d16a78;

    margin-bottom:18px;

    transition:.35s;

}

.feature-box:hover .icon{

    background:#d16a78;

    color:#fff;

}

.feature-box h4{

    color:#3f241f;

    font-size:21px;

    margin-bottom:10px;

}

.feature-box p{

    font-size:15px;

    line-height:1.7;

    margin:0;

}

/* Right */

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:620px;

    border-radius:35px;

    object-fit:cover;

    animation:floatCake 4s ease-in-out infinite;

}

/* Floating Animation */

@keyframes floatCake{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*======================
Responsive
======================*/

@media(max-width:991px){

.hero-container{

    flex-direction:column-reverse;

    text-align:center;

}

.hero-content p{

    margin:auto auto 50px;

}

.hero-features{

    justify-content:center;
    flex-wrap:wrap;

}

.hero-content h1{

    font-size:48px;

}

}

@media(max-width:600px){

.hero-content h1{

    font-size:38px;

}

.hero-features{

    flex-direction:column;

}

.feature-box{

    max-width:280px;
    margin:auto;

}

.hero-content p{

    font-size:17px;

}

}

/*==========================
Cake Philosophy
==========================*/

.cake-philosophy{

    background: linear-gradient(135deg, #f8f5f0 0%, #ecd9be 50%, #eee7de 100%);
    padding:100px 0;

}

.philosophy-container{

    width:90%;
    max-width:1650px;
    margin:auto;

    display:flex;
    align-items:center;
    gap:70px;

}

/* Left */

.philosophy-image{

    flex:1;

}

.philosophy-image img{

    width:100%;
    border-radius:25px;
    display:block;

    transition:.5s;

}

.philosophy-image img:hover{

    transform:scale(1.03);

}

.philosophy-content{
    flex:1;
    margin-right: 0px;
}

.philosophy-content .section-tag{
        display: inline-block;
    color: #c59d5f;
    font-size: 21px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;

}

.philosophy-content h2{
    font-size: 50px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
    font-family: serif;
    font-weight: 400;
}

.philosophy-text{
    color: #3f3f3f;
    font-size: 20px;
    line-height: 1.9;
    max-width: 550px;
    margin-bottom: 55px;

}

/* List */

.feature-list{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.list-item{

    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    color:#444;
    transition:.3s;

}

.list-item:hover{

    transform:translateX(10px);

}

.list-item span{

    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#d16a78;
    color:#fff;

    border-radius:50%;
    font-size:16px;
    font-weight:bold;

}

/* Responsive */

@media(max-width:991px){

.philosophy-container{

    flex-direction:column;

}

.philosophy-content{

    text-align:center;
    margin-right:0;
    width:100%;
}

.list-item{

    justify-content:left;

}

.philosophy-content h2{

    font-size:42px;

}

}

@media(max-width:600px){

.philosophy-content h2{

    font-size:34px;

}

.philosophy-text{

    font-size:16px;

}

.list-item{

    font-size:16px;

}

}

/*==========================
CTA SECTION
==========================*/

.cake-cta{
    width:100%;
    max-width:1950px;
    background-color: #fff;
    display:flex;
    gap:60px;
}

/* Background Pattern */

.cake-cta::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("images/pattern.png");
    opacity:.08;
    pointer-events:none;
}

.cta-container{
    width:90%;
    max-width:1650px;
    margin:auto;
    display:flex;
    align-items:center;
    margin-top: 50px;
    justify-content:space-between;
    gap:60px;
    margin-left: 110px;
    position:relative;
    z-index:2;
}

/* Left */

.cta-content{

    flex:1;

}

.cta-tag{
    display: inline-block;
    color: #c59d5f;
    font-size: 21px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content h2{
    font-size: 70px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
    font-family: serif;
    font-weight: 400;
}

.cta-content p{
    color: #3f3f3f;
    font-size: 20px;
    line-height: 1.9;
    max-width: 550px;
    margin-bottom: 55px;
}

/* Button */

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.35s;
    background: linear-gradient(135deg, rgb(210, 105, 30), rgb(180, 83, 9));
}



/* Right Gallery */

.cta-gallery{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:20px;
}

.cake-card{
    background:#fff;
    padding:8px;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
    transition:.35s;

}

.cake-card img{
    width:270px;
    display:block;
    border-radius:8px;
}

/* Different Rotations */

.card-left{

    transform:rotate(-10deg);

}

.card-center{

    transform:translateY(-30px);

}

.card-right{

    transform:rotate(10deg);

}

.cake-card:hover{

    transform:translateY(-12px) scale(1.05);

    z-index:20;

}

/* Responsive */

@media(max-width:991px){

.cta-container{

    flex-direction:column;
    text-align:center;

}

.cta-content p{

    margin:auto auto 35px;

}

.cta-gallery{

    margin-top:50px;
    flex-wrap:wrap;

}

.card-left,
.card-center,
.card-right{

    transform:none;

}

}

@media(max-width:600px){

.cta-content h2{

    font-size:38px;

}

.cake-card img{

    width:150px;

}

}

.cake-gallery{
    padding:100px 6%;
    background:#fff;
    overflow:hidden;
}

.gallery-heading{

    text-align:center;
    margin-bottom:60px;
}

.gallery-heading span{
    display: inline-block;
    color: #c59d5f;
    font-size: 21px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gallery-heading h2{
    font-size: 70px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
    font-family: serif;
    font-weight: 400;
}

.gallery-heading p{
    width:700px;
    max-width:100%;
    margin:auto;
    line-height:1.8;
    font-size:17px;
    color: #3f3f3f;
    font-size: 20px;
}

.gallery-slider{

    position:relative;
    overflow:hidden;
}

.gallery-track{

    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollGallery 35s linear infinite;
}

.gallery-slider:hover .gallery-track{

    animation-play-state:paused;
}

.gallery-card{

    width:360px;
    height:460px;
    border-radius:28px;
    overflow:hidden;
    flex-shrink:0;
    position:relative;
    cursor:pointer;
    background:white;
    box-shadow:
    0 20px 60px rgba(0,0,0,.12);

    transition:.5s;
}

.gallery-card:hover{

    transform:translateY(-12px);
}

.gallery-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.gallery-card:hover img{

    transform:scale(1.08);
}

/* Gradient Glow */

.gallery-card::after{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.55),
    transparent 55%);
    opacity:.9;
}

/* Shine Effect */

.gallery-card::before{

    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.45),
    transparent);

    transform:skewX(-25deg);
    transition:1s;
    z-index:2;
}

.gallery-card:hover::before{

    left:150%;
}

@keyframes scrollGallery{

    from{

        transform:translateX(0);
    }

    to{

        transform:translateX(-50%);
    }
}

/* Fade Edges */

.gallery-slider::before,
.gallery-slider::after{

    content:"";
    position:absolute;
    top:0;
    width:150px;
    height:100%;
    z-index:5;
}

.gallery-slider::before{

    left:0;

    background:linear-gradient(
    to right,
    #fffaf6,
    transparent);
}

.gallery-slider::after{

    right:0;

    background:linear-gradient(
    to left,
    #fffaf6,
    transparent);
}

/*=====================
 Responsive
======================*/

@media(max-width:992px){

.gallery-heading h2{

    font-size:38px;
}

.gallery-card{

    width:300px;
    height:390px;
}

.gallery-track{

    gap:20px;
}

}

@media(max-width:768px){

.cake-gallery{

    padding:70px 5%;
}

.gallery-heading h2{

    font-size:30px;
}

.gallery-heading p{

    font-size:15px;
}

.gallery-card{

    width:240px;
    height:320px;
}

.gallery-track{

    animation-duration:28s;
}

.gallery-slider::before,
.gallery-slider::after{

    width:60px;
}

}

.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;
    }

}