/*======================================================
MUM & US WEBSITE
Developed by ZamaSho Group
======================================================*/

/*==============================
ROOT VARIABLES
===============================*/

:root{

    --primary:#E84F97;
    --primary-light:#FF8CC5;
    --primary-dark:#C93D7D;

    --dark:#111111;
    --dark-2:#181818;
    --dark-3:#252525;

    --white:#FFFFFF;

    --text:#CFCFCF;

    --border:rgba(255,255,255,.08);

    --radius:22px;

    --transition:.4s ease;

    --shadow:0 20px 50px rgba(0,0,0,.35);

}

/*==============================
RESET
===============================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

background:var(--dark);
color:white;
font-family:'Poppins',sans-serif;
overflow-x:hidden;

}

body{

animation:fadeIn .8s ease;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

section{

padding:70px 0;

}

.container{

max-width:1320px;

}

h1,h2,h3,h4,h5{

font-family:'Playfair Display',serif;

font-weight:700;

}

h1{

font-size:4.4rem;

line-height:1.1;

}

h2{

font-size:3rem;

}

p{

color:var(--text);

line-height:1.8;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

color:var(--primary);

font-weight:600;

letter-spacing:3px;

text-transform:uppercase;

}

.section-title h2{

margin-top:15px;

}

.card-premium{

background:var(--dark-2);

border:1px solid var(--border);

border-radius:22px;

transition:.45s;

overflow:hidden;

height:100%;

}

.card-premium:hover{

transform:translateY(-12px);

box-shadow:var(--shadow);

border-color:var(--primary);

}

/*====================================

NAVBAR

====================================*/

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

padding:20px 0;

transition:.4s;

}

.header.scrolled{

padding:10px 0;

}

.navbar-custom{

background:rgba(20,20,20,.55);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

transition:.4s;

}

.nav-wrapper{

height:90px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:70px;

}

.nav-menu{

display:flex;

align-items:center;

gap:40px;

margin:0;

}

.nav-menu a{

color:white;

font-weight:500;

position:relative;

transition:.4s;

}

.nav-menu a:hover{

color:var(--primary);

}

.nav-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

height:3px;

width:0;

background:var(--primary);

transition:.4s;

}

.nav-menu a:hover::after,

.nav-menu .active::after{

width:100%;

}

.menu-toggle{

display:none;

width:45px;

cursor:pointer;

}

.menu-toggle span{

display:block;

height:3px;

background:white;

margin:8px 0;

border-radius:5px;

transition:.4s;

}

@media(max-width:991px){

.nav-menu{

position:fixed;

top:0;

right:-100%;

width:300px;

height:100vh;

background:#181818;

display:flex;

flex-direction:column;

justify-content:center;

gap:35px;

transition:.5s;

}

.nav-menu.active{

right:0;

}

.menu-toggle{

display:block;

}

.btn-main{

display:none;

}

}

/*==================================================
HERO
==================================================*/

.hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(rgba(15,15,15,.75),
    rgba(15,15,15,.85)),
    url("../images/hero/background.png");

    background-size:cover;

    background-position:center;

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(232,79,151,.15);

    color:var(--primary);

    font-weight:600;

    margin-bottom:25px;

}

/*==================================
Hero Title
==================================*/

.hero-title{

    margin-bottom:35px;

}

.hero-line-1{

    display:block;

    font-family:'Playfair Display',serif;

    font-size:4.3rem;

    font-weight:700;

    color:#fff;

    line-height:1;

}

.hero-line-2{

    display:block;

    font-family:'Great Vibes',cursive;

    font-size:6.3rem;

    color:#E84F97;

    line-height:.95;

    font-weight:400;

    margin:8px 0;

}

.hero-line-3{

    display:block;

    font-family:'Playfair Display',serif;

    font-size:3.6rem;

    font-weight:700;

    color:#fff;

    line-height:1.1;

}

.hero-content{

    max-width:650px;

}

.hero-title{

    text-shadow:

        0 4px 25px rgba(0,0,0,.45);

}

.hero p{

    max-width:620px;

    font-size:1.35rem;

    line-height:1.8;

    color:#d7d7d7;

    margin-bottom:40px;

}

.btn-order{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 38px;

    border-radius:60px;

    background:linear-gradient(135deg,#E84F97,#ff74b5);

    color:#fff;

    font-weight:600;

    font-size:17px;

    transition:.4s;

    box-shadow:0 12px 35px rgba(232,79,151,.35);

}

.btn-order:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(232,79,151,.55);

}

.btn-services{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,.7);

    color:#fff;

    font-weight:600;

    transition:.4s;

    background:transparent;

}

.btn-services:hover{

    background:#fff;

    color:#111;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:50px;

    flex-wrap:wrap;

}

.hero-features{

    display:flex;

    align-items:center;

    gap:50px;

    flex-wrap:wrap;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#e8e8e8;

    font-size:17px;

}

.hero-features i{

    color:var(--primary);

    font-size:22px;

}

.hero-image-wrapper{

    position:relative;

}

.hero-cake{

    width:90%;

    animation:floatCake 5s ease-in-out infinite;

    position:relative;

    z-index:2;

}

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

}

.hero-glow-1{

    width:350px;

    height:350px;

    background:#ff4da6;

    top:10%;

    right:10%;

    opacity:.30;

}

.hero-glow-2{

    width:300px;

    height:300px;

    background:#ff94c7;

    bottom:5%;

    left:5%;

    opacity:.20;

}

.birthday-text{

    position:absolute;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    color:#d4a15d;

    font-family:'Playfair Display',serif;

    font-size:3rem;

    z-index:3;

}

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:28px;

    animation:bounce 2s infinite;

}

@keyframes floatCake{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,10px);

}

}

/*=========================
SECTION HEADING
=========================*/

.section-heading{

    text-align:center;
    margin-bottom:5px;

}

.section-heading span{

    color:var(--primary);

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

}

.section-heading h2{

    font-family:'Playfair Display',serif;

    font-size:3rem;

    color:#fff;

    margin:15px 0;

}

.divider{

    width:80px;

    height:3px;

    background:var(--primary);

    margin:20px auto;

    border-radius:20px;

}

/*=========================
SERVICE CARDS
=========================*/

.service-card{

    position:relative;

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(232,79,151,.25);

    border-color:var(--primary);

}

.service-image{

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff5da8,#E84F97);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    margin:-35px auto 20px;

    position:relative;

    z-index:5;

    box-shadow:0 10px 30px rgba(232,79,151,.4);

}

.service-content{

    padding:0 25px 30px;

    text-align:center;

}

.service-content h3{

    color:#fff;

    margin-bottom:20px;

    font-size:1.8rem;

}

.service-content ul{

    padding:0;

    margin:0;

}

.service-content li{

    list-style:none;

    color:#ddd;

    padding:8px 0;

    position:relative;

}

.service-content li::before{

    content:"✓";

    color:var(--primary);

    margin-right:10px;

    font-weight:bold;

}

/*=====================================
ABOUT SECTION
======================================*/

.about-section{

    padding:5px 0;
    background:#111;

}

.about-card,
.cta-card{

    background:linear-gradient(135deg,#1b1b1b,#242424);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px;

    overflow:hidden;

    height:100%;

    position:relative;

    transition:.4s;

}

/* About Card Background */
.about-card{

    background:
        linear-gradient(rgba(17,17,17,.70), rgba(17,17,17,.70)),
        url('../images/about/logo.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* CTA Card Background */
.cta-card{

    background:
        linear-gradient(rgba(17,17,17,.70), rgba(17,17,17,.70)),
        url('../images/about/about-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.about-card:hover,
.cta-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 25px 60px rgba(232,79,151,.18);

}

.section-label{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:15px;

    font-weight:600;

}


.about-card h2,
.cta-card h2{

    font-family:'Playfair Display',serif;

    color:#fff;

    margin-bottom:20px;

}

.about-card p,
.cta-card p{

    color:#d6d6d6;

    line-height:1.8;

}

.about-image,
.baker-image{

    transition:.5s;

}

.about-card:hover .about-image,
.cta-card:hover .baker-image{

    transform:scale(1.05);

}

.about-card::before,
.cta-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(232,79,151,.18);

    filter:blur(70px);

    right:-60px;

    bottom:-60px;

}

@media (max-width: 768px){

    .about-card,
    .cta-card{

        padding:30px;

        text-align:center;

    }

    .about-image,
    .baker-image{

        margin-top:30px;

        max-width:220px;

    }

}

/*====================================
WHY CHOOSE US
====================================*/

.why-us{

    padding:100px 0;

    background:#101010;

}

.why-card{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 20px;

    transition:.45s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(232,79,151,.20);

}

.why-card::before{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    background:rgba(232,79,151,.15);

    border-radius:50%;

    filter:blur(55px);

    top:-70px;

    right:-70px;

    opacity:0;

    transition:.5s;

}

.why-card:hover::before{

    opacity:1;

}

.why-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#ff5da8,#E84F97);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.why-card:hover .why-icon{

    transform:rotate(8deg) scale(1.1);

}

.why-card h5{

    color:#fff;

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

}

.why-card p{

    color:#bfbfbf;

    font-size:15px;

    line-height:1.7;

}

/*======================================
GALLERY
=======================================*/

.gallery{

    background:#111;

    padding:100px 0;

}

.gallery-filter{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:50px;

    flex-wrap:wrap;

}

.gallery-filter button{

    border:none;

    padding:12px 28px;

    border-radius:40px;

    background:#1b1b1b;

    color:#fff;

    transition:.4s;

}

.gallery-filter button.active,
.gallery-filter button:hover{

    background:var(--primary);

}

.gallery-card{

    overflow:hidden;

    border-radius:20px;

    position:relative;

}

.gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-card:hover img{

    transform:scale(1.12);

}

.gallery-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.5),
    transparent);

    opacity:0;

    transition:.4s;

}

.gallery-card:hover::after{

    opacity:1;

}

/*==================================
TESTIMONIALS
==================================*/

.testimonials{

    background:#0f0f0f;

    padding:100px 0;

}

.testimonial-card{

    max-width:850px;

    margin:auto;

    background:linear-gradient(135deg,#181818,#242424);

    border-radius:25px;

    padding:60px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(232,79,151,.18);

    border-radius:50%;

    filter:blur(80px);

    top:-120px;

    right:-120px;

}

.quote{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

.testimonial-card p{

    color:#ddd;

    font-size:1.2rem;

    line-height:1.9;

    margin-bottom:30px;

}

.stars{

    color:#FFD700;

    font-size:24px;

    margin-bottom:30px;

    letter-spacing:4px;

}

.client{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

}

.client img{

    width:80px;

    height:80px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid var(--primary);

}

.client h5{

    color:#fff;

    margin-bottom:5px;

}

.client span{

    color:#bbb;

}

@media(max-width:768px){

.testimonial-card{

padding:35px 25px;

}

.client{

flex-direction:column;

}

}


/*=====================================
CONTACT
======================================*/

.contact{

    background:#111;

    padding:100px 0;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{

    display:flex;

    align-items:center;

    gap:20px;

    background:#1b1b1b;

    padding:25px;

    border-radius:20px;

    transition:.4s;

}

.info-box:hover{

    transform:translateX(10px);

    border-left:4px solid var(--primary);

}

.info-box i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#ff5da8,#E84F97);

    color:#fff;

    font-size:24px;

}

.info-box h5{

    color:#fff;

}

.info-box p{

    color:#cfcfcf;

    margin:0;

}

.contact-form{

    background:#1a1a1a;

    padding:45px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

}

.form-control,
.form-select{

    background:#111;

    border:1px solid #333;

    color:#fff;

    padding:15px;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);

    box-shadow:none;

    background:#111;

    color:#fff;

}

textarea{

    resize:none;

}

/*=====================================
FOOTER
======================================*/

.footer{

    background:#0b0b0b;

    color:#d9d9d9;

    padding:80px 0 25px;

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #E84F97,
        #ff74b5,
        #E84F97
    );

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer h3{

    color:#fff;

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

    font-size:20px;

}

.footer p{

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#d9d9d9;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--primary);

    padding-left:6px;

}

.footer-contact i{

    color:var(--primary);

    width:22px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1b1b1b;

    color:#fff;

    transition:.4s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom a{

    color:var(--primary);

    text-decoration:none;

}

.footer-bottom a:hover{

    text-decoration:underline;

}

@media (max-width:768px){

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

}

}

/*==================================
PRELOADER
==================================*/

#preloader{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:#0d0d0d;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader{

    text-align:center;

}

.loader img{

    width:110px;

    animation:logoFloat 2s infinite ease-in-out;

}

.loader h3{

    color:#fff;

    margin-top:20px;

    font-family:'Playfair Display',serif;

}

.loader span{

    color:#E84F97;

}

@keyframes logoFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

.navbar{

transition:.4s;

}

.navbar.scrolled{

background:rgba(17,17,17,.95);

backdrop-filter:blur(12px);

box-shadow:0 10px 30px rgba(0,0,0,.2);

padding:10px 0;

}

#progress-bar{

position:fixed;

top:0;

left:0;

height:4px;

background:#E84F97;

width:0;

z-index:999999;

}

#scrollTop{

position:fixed;

bottom:110px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#E84F97;

color:white;

display:none;

cursor:pointer;

z-index:999;

}

.whatsapp-float{

position:fixed;

bottom:30px;

right:30px;

width:65px;

height:65px;

background:#25D366;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:34px;

z-index:999;

box-shadow:0 15px 35px rgba(0,0,0,.25);

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}