/*==================================================
  MOBIS HAIR
  STYLE.CSS
===================================================*/


/*==========================
RESET
===========================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Plus Jakarta Sans',sans-serif;

    color:#1c1c1c;

    background:#ffffff;

    overflow-x:hidden;

    line-height:1.8;

}


/*==========================
VARIABLES
===========================*/

:root{

    --black:#111111;

    --white:#ffffff;

    --champagne:#D8C3A5;

    --light:#f8f8f8;

    --grey:#777777;

    --shadow:0 20px 60px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.45s ease;

    --container:1280px;

}


/*==========================
GLOBAL
===========================*/

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

section{

    padding:120px 0;

}

.section-heading{

    margin-bottom:70px;

}

.section-heading.center{

    text-align:center;

}

.section-tag{

    color:var(--champagne);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.8rem;

    margin-bottom:18px;

    font-weight:700;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:4rem;

    line-height:1.05;

    margin-bottom:20px;

    color:var(--black);

}

.section-heading p{

    max-width:700px;

    color:var(--grey);

    font-size:1.08rem;

}


/*==========================
BUTTONS
===========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border-radius:50px;

    background:var(--black);

    color:var(--white);

    transition:var(--transition);

    font-weight:600;

    letter-spacing:.4px;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    background:var(--champagne);

    color:var(--black);

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border:2px solid rgba(255,255,255,.6);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}


/*==========================
PRELOADER
===========================*/

#preloader{

    position:fixed;

    inset:0;

    background:#111;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

#preloader img{

    width:120px;

    margin-bottom:35px;

}

.loader-line{

    width:180px;

    height:2px;

    background:#333;

    position:relative;

    overflow:hidden;

}

.loader-line::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:var(--champagne);

}


/*==========================
HEADER
===========================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:var(--transition);

}

header.scrolled{

    background:#fff;

    box-shadow:0 10px 40px rgba(0,0,0,.08);

    backdrop-filter:blur(15px);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    width:120px;

}

.nav-links{

    display:flex;

    gap:38px;

}

.nav-links a{

    font-size:.95rem;

    font-weight:600;

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--champagne);

}

.social-icons{

    display:flex;

    gap:18px;

}

.social-icons a{

    font-size:1.2rem;

    transition:var(--transition);

}

.social-icons a:hover{

    color:var(--champagne);

}

.menu-btn{

    display:none;

}


/*==========================
HERO
===========================*/

#hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.55));

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(900px,90%);

    text-align:center;

    color:#fff;

}

.hero-subtitle{

    letter-spacing:5px;

    text-transform:uppercase;

    color:var(--champagne);

    margin-bottom:18px;

    font-weight:700;

    font-size:.8rem;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:6rem;

    line-height:.95;

    margin-bottom:28px;

}

.hero-description{

    max-width:760px;

    margin:auto;

    font-size:1.15rem;

    color:rgba(255,255,255,.88);

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

}

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    text-align:center;

    color:#fff;

    z-index:2;

}

.scroll-indicator span{

    width:2px;

    height:55px;

    display:block;

    margin:auto;

    background:#fff;

    margin-bottom:12px;

    opacity:.7;

}
/*==================================================
ABOUT
==================================================*/

#about{
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.about-image img{
    height:700px;
    object-fit:cover;
    transition:.8s ease;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    margin-bottom:25px;
    color:var(--black);
}

.about-content p{
    color:var(--grey);
    margin-bottom:24px;
    font-size:1.05rem;
}

.about-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:45px;
}

.mini-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.mini-card:hover{
    transform:translateY(-10px);
}

.mini-card h4{
    font-size:1.35rem;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}



/*==================================================
COLLECTIONS
==================================================*/

#collections{
    background:#f8f8f8;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.collection-card{

    overflow:hidden;

    border-radius:28px;

    background:#fff;

    box-shadow:var(--shadow);

    transition:.5s ease;

}

.collection-card:hover{

    transform:translateY(-12px);

}

.collection-card img{

    height:420px;

    object-fit:cover;

    transition:.8s ease;

}

.collection-card:hover img{

    transform:scale(1.08);

}

.collection-content{

    padding:35px;

}

.collection-content h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:15px;

}

.collection-content p{

    color:var(--grey);

}



/*==================================================
PACKAGING
==================================================*/

#packaging{

    background:#fff;

}

.packaging-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.packaging-text h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3.4rem;

    margin-bottom:25px;

}

.packaging-text p{

    color:var(--grey);

    margin-bottom:35px;

}

.packaging-gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.packaging-gallery img{

    border-radius:22px;

    height:280px;

    object-fit:cover;

    transition:.7s ease;

    box-shadow:var(--shadow);

}

.packaging-gallery img:nth-child(2){

    margin-top:70px;

}

.packaging-gallery img:nth-child(4){

    margin-top:70px;

}

.packaging-gallery img:hover{

    transform:scale(1.05);

}



/*==================================================
WHY CHOOSE US
==================================================*/

#why-us{

    background:#111;

    color:#fff;

}

#why-us .section-heading h2{

    color:#fff;

}

#why-us .section-heading p{

    color:rgba(255,255,255,.75);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    padding:45px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s ease;

}

.why-card:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.08);

}

.why-card i{

    font-size:2.4rem;

    color:var(--champagne);

    margin-bottom:28px;

}

.why-card h3{

    margin-bottom:18px;

    font-size:1.4rem;

    font-family:'Cormorant Garamond',serif;

}

.why-card p{

    color:rgba(255,255,255,.72);

}



/*==================================================
SERVICES
==================================================*/

#services{

    background:#fafafa;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-box{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:.45s ease;

    position:relative;

    overflow:hidden;

}

.service-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:var(--champagne);

    transition:.45s ease;

}

.service-box:hover::before{

    height:100%;

}

.service-box:hover{

    transform:translateY(-12px);

}

.service-box h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:18px;

}

.service-box p{

    color:var(--grey);

}



/*==================================================
SECTION SPACING REFINEMENT
==================================================*/

#collections,
#packaging,
#why-us,
#services{

    position:relative;

}

.section-heading{

    max-width:820px;

}

.section-heading.center{

    margin-left:auto;

    margin-right:auto;

}
/*==================================================
CUSTOMER EXPERIENCE
==================================================*/

#experience{
    background:#ffffff;
}

.experience-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:80px;
    align-items:center;
}

.experience-image{
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
}

.experience-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    transition:.8s ease;
}

.experience-image:hover img{
    transform:scale(1.06);
}

.experience-content{
    padding:25px;
}

.experience-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3.4rem;
    line-height:1.1;
    margin:20px 0 30px;
    color:var(--black);
}

.experience-content p{
    color:var(--grey);
    margin-bottom:25px;
}

.experience-content ul{
    margin-top:40px;
}

.experience-content li{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
    font-weight:600;
}

.experience-content li::before{
    content:"✓";
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--champagne);
    color:#111;
    font-weight:700;
}



/*==================================================
TESTIMONIALS
==================================================*/

#testimonials{
    background:#111;
    color:#fff;
}

#testimonials .section-heading h2{
    color:#fff;
}

.testimonial-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

.testimonial-image{
    overflow:hidden;
    border-radius:28px;
}

.testimonial-image img{
    height:560px;
    object-fit:cover;
}

.testimonial-content{
    position:relative;
}

.testimonial-content::before{
    content:"“";
    position:absolute;
    left:-10px;
    top:-60px;
    font-size:9rem;
    color:rgba(216,195,165,.18);
    font-family:serif;
}

.testimonial-content blockquote{
    font-family:'Cormorant Garamond',serif;
    font-size:2.5rem;
    line-height:1.4;
    margin-bottom:35px;
}

.testimonial-content span{
    color:var(--champagne);
    letter-spacing:2px;
    text-transform:uppercase;
}



/*==================================================
INSTAGRAM
==================================================*/

#instagram{
    background:#fafafa;
}

.instagram-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:90px 70px;
    background:#fff;
    border-radius:30px;
    box-shadow:var(--shadow);
}

.instagram-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3.5rem;
    margin-bottom:20px;
}

.instagram-box p{
    color:var(--grey);
    max-width:650px;
    margin:0 auto 40px;
}



/*==================================================
CONTACT
==================================================*/

#contact{
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 480px;
    gap:70px;
}

.contact-info h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3.5rem;
    margin:20px 0;
}

.contact-text{
    margin-bottom:45px;
    color:var(--grey);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;
}

.contact-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    transition:.35s;
}

.contact-item:hover i{
    background:var(--champagne);
    color:#111;
}

.contact-item h4{
    margin-bottom:8px;
}

.contact-item p{
    color:var(--grey);
}

.contact-card{
    background:#111;
    color:#fff;
    border-radius:30px;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:var(--shadow);
}

.contact-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    margin-bottom:25px;
}

.contact-card p{
    color:rgba(255,255,255,.75);
    margin-bottom:35px;
}

.contact-card .btn-secondary{
    margin-top:18px;
}



/*==================================================
FOOTER
==================================================*/

footer{
    background:#080808;
    color:#fff;
    padding:90px 0 40px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
    margin-bottom:70px;
}

.footer-logo img{
    width:140px;
    margin-bottom:30px;
}

.footer-logo p{
    color:rgba(255,255,255,.7);
    max-width:420px;
}

.footer-links h4,
.footer-social h4{
    margin-bottom:30px;
    font-size:1.3rem;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(255,255,255,.72);
    transition:.3s;
}

.footer-links a:hover{
    color:var(--champagne);
}

.footer-social .social-icons{
    margin-top:15px;
}

.footer-social .social-icons a{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    transition:.35s;
}

.footer-social .social-icons a:hover{
    background:var(--champagne);
    color:#111;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:35px;
    text-align:center;
    color:rgba(255,255,255,.55);
}



/*==================================================
FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{
    position:fixed;
    right:28px;
    bottom:30px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    z-index:998;
    box-shadow:0 18px 45px rgba(0,0,0,.25);
    transition:.35s;
}

.floating-whatsapp:hover{
    transform:translateY(-8px) scale(1.05);
}



/*==================================================
BACK TO TOP
==================================================*/

#backToTop{
    position:fixed;
    right:30px;
    bottom:120px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#111;
    color:#fff;
    cursor:pointer;
    font-size:1.2rem;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:997;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    background:var(--champagne);
    color:#111;
}



/*==================================================
UTILITY
==================================================*/

::selection{
    background:var(--champagne);
    color:#111;
}

section{
    overflow:hidden;
}

h1,h2,h3,h4{
    font-weight:600;
}

body::-webkit-scrollbar{
    width:10px;
}

body::-webkit-scrollbar-track{
    background:#f5f5f5;
}

body::-webkit-scrollbar-thumb{
    background:#b9b9b9;
    border-radius:30px;
}

body::-webkit-scrollbar-thumb:hover{
    background:#888;
}