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

body{

    font-family:'Poppins', sans-serif;

    background:#FFF9F7;

    overflow-x:hidden;
}

/* HERO */

.hero{

    min-height:100vh;

    background-image:url('../images/background.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

    padding:30px 80px;
}

/* NAVBAR */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;
}

.logo img{

    width:220px;
}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;
}

.nav-links a{

    text-decoration:none;

    color:#4F4553;

    font-weight:500;
}

.shop-btn{

    text-decoration:none;

    background:#CDA3E5;

    color:white;

    padding:14px 30px;

    border-radius:50px;

    transition:0.3s;
}

.shop-btn:hover{

    background:#B78ACD;
}

/* HERO CONTENT */

.hero-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    margin-top:40px;
}

.hero-text{

    flex:1;
}

.hero-text h1{

    font-family:'Playfair Display', serif;

    font-size:6rem;

    line-height:1.05;

    color:#8B68A8;

    margin-bottom:25px;
}

.hero-text p{

    max-width:500px;

    color:#645B68;

    line-height:1.8;

    margin-bottom:30px;

    font-size:1.05rem;
}

.explore-btn{

    display:inline-block;

    text-decoration:none;

    background:#CDA3E5;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    transition:0.3s;
}

.explore-btn:hover{

    background:#B78ACD;

    transform:translateY(-3px);
}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;

    max-width:500px;

    transform:rotate(-8deg);
}

/* BUTTERFLIES */

.butterfly{

    position:absolute;

    pointer-events:none;
}

.butterfly-1{

    width:110px;

    top:180px;

    right:220px;

    opacity:0.9;
}

.butterfly-2{

    width:80px;

    top:300px;

    left:90px;

    opacity:0.9;
}

/* RESPONSIVE */

/* RESPONSIVE */

@media(max-width:900px){

    .hero{
        padding:20px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
        margin-bottom: 20px;
    }

    .nav-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo img{
        width:170px;
    }

    .shop-btn{
        padding:12px 22px;
        font-size:0.9rem;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        margin-top:20px;
    }

    .hero-text h1{
        font-size:2.5rem;
        line-height:1.1;
    }

    .hero-text p{
        margin:auto;
        margin-bottom:30px;
        padding:0 10px;
    }

    .hero-image img{
        max-width:250px;
    }

    .butterfly-1{
        width:70px;
        right:20px;
        top:220px;
    }

    .butterfly-2{
        width:60px;
        left:20px;
        top:320px;
    }
}


/* ===================== */
/* ABOUT PAGE */
/* ===================== */

.about-page{

    min-height:100vh;

    background-image:url('../images/background.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

    padding:30px 80px 100px;
}

.about-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    margin-top:80px;
}

.about-text{

    flex:1;
}

.about-text h1{

    font-family:'Playfair Display', serif;

    font-size:5rem;

    color:#8B68A8;

    margin-bottom:30px;
}

.about-text p{

    color:#645B68;

    line-height:1.9;

    margin-bottom:20px;

    max-width:600px;
}

.about-image{

    flex:1;

    display:flex;

    justify-content:center;
}

.about-image img{

    max-width:500px;

    width:100%;

    transform:rotate(-6deg);
}

/* BUTTERFLIES */

.about-butterfly-1{

    position:absolute;

    width:110px;

    top:180px;

    right:250px;
}

.about-butterfly-2{

    position:absolute;

    width:80px;

    top:350px;

    left:120px;
}

/* MISSION */

.mission-section{

    padding:100px 80px;

    text-align:center;

    background:#FFF9F7;
}

.mission-section h2{

    font-family:'Playfair Display', serif;

    font-size:3rem;

    color:#8B68A8;

    margin-bottom:50px;
}

.mission-grid{

    display:grid;

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

    gap:30px;
}

.mission-card{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.mission-card h3{

    margin-bottom:15px;

    color:#8B68A8;
}

.mission-card p{

    color:#645B68;

    line-height:1.8;
}

/* QUOTE */

.quote-section{

    text-align:center;

    padding:120px 40px;

    background:linear-gradient(
        to right,
        #EFDDF7,
        #FBE4EE
    );
}

.quote-section h2{

    font-family:'Playfair Display', serif;

    font-size:3rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.quote-section p{

    color:#645B68;
}

/* CTA */

.cta-section{

    text-align:center;

    padding:120px 40px;

    background:#FFF9F7;
}

.cta-section h2{

    font-family:'Playfair Display', serif;

    font-size:3rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.cta-section p{

    margin-bottom:30px;

    color: #645b68;
}

@media(max-width:900px){

    .about-page{
        padding:20px;
    }

    .about-container{
        flex-direction:column;
        text-align:center;
        margin-top:30px;
        gap:30px;
    }

    .about-text h1{
        font-size:3rem;
    }

    .about-text p{
        max-width:100%;
        margin:auto;
    }

    .about-image img{
        max-width:280px;
    }

    .about-butterfly-1{
        width:70px;
        right:20px;
        top:220px;
    }

    .about-butterfly-2{
        width:60px;
        left:20px;
        top:320px;
    }

.about-butterfly-2{
    width:60px;
    left:20px;
    top:320px;
}
}

@media(max-width:900px){

    .mission-section{
        padding:60px 20px;
    }

    .mission-section h2{
        font-size:2.2rem;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .mission-card{
        padding:30px;
    }

    .quote-section{
        padding:80px 20px;
    }

    .quote-section h2{
        font-size:2rem;
    }

    .cta-section{
        padding:80px 20px;
    }

    .cta-section h2{
        font-size:2rem;
    }
}

/* ================================= */
/* PRODUCTS PAGE */
/* ================================= */

.products-hero{

    min-height:70vh;

    background-image:url('../images/background.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

    padding:30px 80px;
}

.products-hero-content{

    text-align:center;

    margin-top:120px;
}

.products-hero-content h1{

    font-family:'Playfair Display', serif;

    font-size:5rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.products-hero-content p{

    max-width:650px;

    margin:auto;

    color:#645B68;

    line-height:1.8;
}

/* BUTTERFLIES */

.products-butterfly{

    position:absolute;

    pointer-events:none;

    opacity:0.85;
}

.products-butterfly-1{

    width:110px;

    top:180px;

    right:220px;
}

.products-butterfly-2{

    width:80px;

    top:320px;

    left:120px;
}

/* PRODUCT SHOWCASE */

.product-showcase{

    max-width:1200px;

    margin:120px auto;

    padding:0 80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;
}

.reverse{

    flex-direction:row-reverse;
}

.product-image{

    flex:1;
}

.product-image img{

    width:100%;

    max-width:500px;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.product-image img:hover{

    transform:translateY(-8px);
}

.product-content{

    flex:1;
}

.product-label{

    display:inline-block;

    background:#F3E6FA;

    color:#8B68A8;

    padding:10px 18px;

    border-radius:30px;

    font-size:0.9rem;

    margin-bottom:20px;
}

.product-content h2{

    font-family:'Playfair Display', serif;

    font-size:3.2rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.product-content p{

    color:#645B68;

    line-height:1.9;

    margin-bottom:30px;

    max-width:500px;
}

/* GALLERY */

.gallery-strip{

    max-width:1200px;

    margin:0 auto 100px;

    padding:0 80px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.gallery-strip img{

    width:100%;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:0.3s ease;

    cursor:pointer;
}

.gallery-strip img:hover{

    transform:translateY(-8px) scale(1.02);
}

/* QUOTE SECTION */

.products-quote{

    max-width:1000px;

    margin:120px auto;

    padding:80px;

    text-align:center;

    border-radius:40px;

    background:linear-gradient(
        to right,
        #F2E3FA,
        #FDEAF3
    );
}

.products-quote h2{

    font-family:'Playfair Display', serif;

    font-size:3rem;

    color:#8B68A8;

    line-height:1.4;
}

/* CTA */

.products-cta{

    text-align:center;

    padding:120px 40px;
}

.products-cta h2{

    font-family:'Playfair Display', serif;

    font-size:3.5rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.products-cta p{

    color:#645B68;

    margin-bottom:35px;

    line-height:1.8;
}

/* MOBILE */

@media(max-width:900px){

    .product-showcase{

        flex-direction:column;

        text-align:center;

        padding:0 30px;
    }

    .reverse{

        flex-direction:column;
    }

    .gallery-strip{

        padding:0 30px;
    }

    .products-hero-content h1{

        font-size:3.5rem;
    }

    .product-content h2{

        font-size:2.5rem;
    }

    .products-quote{

        margin:80px 20px;

        padding:50px 30px;
    }

    .products-quote h2{

        font-size:2rem;
    }
    
}.section-butterfly{
    width:90px;
    display:block;
    margin:60px auto;
    opacity:0.7;
}

/* ===================== */
/* FAQ PAGE */
/* ===================== */

.faq-page{

    min-height:70vh;

    background-image:url('../images/background.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

    padding:30px 80px;
}

.faq-header{

    text-align:center;

    margin-top:120px;
}

.faq-header h1{

    font-family:'Playfair Display', serif;

    font-size:5rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.faq-header p{

    max-width:650px;

    margin:auto;

    color:#645B68;

    line-height:1.8;
}

.faq-butterfly-1{

    position:absolute;

    width:100px;

    top:220px;

    right:220px;
}

.faq-butterfly-2{

    position:absolute;

    width:80px;

    top:340px;

    left:140px;
}

.faq-container{

    max-width:1200px;

    margin:100px auto;

    padding:0 80px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;
}

.faq-card{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    transition:0.3s ease;
}

.faq-card:hover{

    transform:translateY(-8px);
}

.faq-card h3{

    color:#8B68A8;

    margin-bottom:15px;

    font-family:'Playfair Display', serif;

    font-size:1.6rem;
}

.faq-card p{

    color:#645B68;

    line-height:1.8;
}

.faq-butterfly-1{
    width:60px;
    top:140px;
    right:30px;
}

.faq-butterfly-2{
    width:50px;
    top:260px;
    left:30px;
}

.faq-title{
    font-size:2.5rem;
    line-height:1.1;
}

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

.contact-page{

    min-height:70vh;

    background-image:url('../images/background.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

    padding:30px 80px;
}

.contact-header{

    text-align:center;

    margin-top:120px;
}

.contact-header h1{

    font-family:'Playfair Display', serif;

    font-size:5rem;

    color:#8B68A8;

    margin-bottom:20px;
}

.contact-header p{

    max-width:650px;

    margin:auto;

    color:#645B68;

    line-height:1.8;
}

/* BUTTERFLIES */

.contact-butterfly-1{

    position:absolute;

    width:100px;

    top:220px;

    right:220px;

    opacity:0.85;
}

.contact-butterfly-2{

    position:absolute;

    width:80px;

    top:340px;

    left:140px;

    opacity:0.85;
}

/* CONTACT SECTION */

.contact-section{

    max-width:800px;

    margin:100px auto;

    padding:0 80px;
}

.contact-card{

    background:white;

    padding:60px;

    border-radius:30px;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    text-align:center;
}

.contact-card h2{

    font-family:'Playfair Display', serif;

    color:#8B68A8;

    font-size:2.5rem;

    margin-bottom:20px;
}

.contact-card p{

    color:#645B68;

    line-height:1.8;
}

.contact-info{

    margin-top:40px;
}

.info-item{

    margin-bottom:30px;
}

.info-item h4{

    color:#8B68A8;

    margin-bottom:10px;

    font-size:1.1rem;
}

.info-item p{

    color:#645B68;
}

/* MOBILE */

@media(max-width:900px){

    .contact-section{

        padding:0 30px;
    }

    .contact-header h1{

        font-size:3.5rem;
    }

    .contact-card{

        padding:40px 30px;
    }

.contact-butterfly-1{
    width:60px;
    top:180px;
    right:30px;
}

.contact-butterfly-2{
    width:50px;
    top:280px;
    left:40px;
}

}

@media (max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
        margin-bottom:20px;
    }

    .products-butterfly-1{
        width:60px;
        top:140px;
        right:30px;
    }

    .products-butterfly-2{
        width:50px;
        top:220px;
        left:40px;
    }

}