/* ===================================================
   HANA FLOWERS MARKET
   assets/css/style.css
   PART 1
=================================================== */

/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   ROOT
=========================== */

:root{

    --primary:#5D9C59;
    --secondary:#A7D397;
    --accent:#F4B183;

    --dark:#222831;
    --text:#555;
    --white:#ffffff;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/* ===========================
   RESET
=========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:90px 0;

}

.container{

    max-width:1200px;

}

/* ===========================
   TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:var(--dark);

    margin-top:10px;

}

.section-title p{

    margin-top:15px;

    color:#777;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    background:#fff !important;

    padding:18px 0;

    transition:.4s;

    z-index:9999;

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

    color:var(--primary)!important;

}

.nav-link{

    color:#444!important;

    margin-left:15px;

    font-weight:500;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.navbar .btn{

    border-radius:50px;

    padding:12px 28px;

}

/* sticky */

.navbar.scrolled{

    box-shadow:var(--shadow);

    padding:12px 0;

}

/* ===========================
   BUTTON
=========================== */

.btn-success{

    background:var(--primary);

    border:none;

    border-radius:50px;

    padding:14px 32px;

    font-weight:600;

}

.btn-success:hover{

    background:#4f874b;

    transform:translateY(-3px);

}

.btn-outline-success{

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    padding:14px 32px;

}

.btn-outline-success:hover{

    background:var(--primary);

    color:#fff;

}

/* ===========================
   HERO
=========================== */

.hero{

    padding-top:170px;

    padding-bottom:120px;

    background:linear-gradient(135deg,#ffffff,#f7fff5);

}

.hero h1{

    font-size:58px;

    font-weight:700;

    color:var(--dark);

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    color:#666;

    margin-bottom:30px;

}

.hero .badge{

    font-size:15px;

    padding:12px 20px;

}

.hero img{

    animation:float 4s ease-in-out infinite;

}

.hero h3{

    color:var(--primary);

    font-size:38px;

    font-weight:700;

}

.hero .col-4 p{

    margin-top:8px;

}

/* ===========================
   FEATURE BOX
=========================== */

.feature-box{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.feature-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#edf8ec;

    color:var(--primary);

    font-size:34px;

}

.feature-box h5{

    font-weight:600;

    margin-bottom:15px;

    color:var(--dark);

}

.feature-box p{

    font-size:15px;

}

/* ===========================
   CATEGORY
=========================== */

.category-card{

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    transition:.35s;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-card img{

    height:250px;

    width:100%;

    object-fit:cover;

    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card h5{

    padding:20px;

    font-weight:600;

    color:var(--dark);

}
/* ===================================================
   HANA FLOWERS MARKET
   assets/css/style.css
   PART 2
=================================================== */


/*======================================
PRODUCT CARD
======================================*/

.product-card{

    border:none;

    border-radius:20px;

    overflow:hidden;

    transition:.35s ease;

    background:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.product-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card .card-body{

    padding:30px;

}

.product-card h5{

    font-size:22px;

    font-weight:700;

    color:var(--dark);

    margin-bottom:15px;

}

.product-card p{

    color:#777;

    font-size:15px;

    min-height:70px;

}

.product-card h4{

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin:20px 0;

}

.product-card .btn{

    width:100%;

}



/*======================================
STEP BOX
======================================*/

.step-box{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    height:100%;

}

.step-box:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.step-number{

    width:70px;

    height:70px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

}

.step-box h5{

    margin-bottom:15px;

    color:var(--dark);

    font-weight:600;

}



/*======================================
TESTIMONIAL
======================================*/

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:.35s;

    text-align:center;

    height:100%;

    font-size:22px;

    color:#FFD700;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card p{

    color:#666;

    font-size:16px;

    margin:20px 0;

}

.testimonial-card h6{

    color:var(--dark);

    font-weight:700;

}



/*======================================
FAQ
======================================*/

.accordion-item{

    border:none;

    border-radius:15px !important;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.accordion-button{

    padding:22px;

    font-weight:600;

    color:var(--dark);

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#eef8ed;

    color:var(--primary);

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:25px;

    color:#666;

}



/*======================================
CTA
======================================*/

.cta-section{

    background:linear-gradient(135deg,#5D9C59,#7BC67B);

    padding:90px 0;

    text-align:center;

}

.cta-section h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-section p{

    color:#fff;

    font-size:18px;

    margin-bottom:35px;

}

.cta-section .btn{

    background:#fff;

    color:var(--primary);

    border-radius:50px;

    padding:16px 40px;

    font-size:18px;

    font-weight:700;

}

.cta-section .btn:hover{

    transform:translateY(-4px);

}



/*======================================
FOOTER
======================================*/

.footer{

    background:#1f1f1f;

    color:#ddd;

}

.footer h4,
.footer h5{

    color:#fff;

    margin-bottom:20px;

}

.footer p{

    color:#bfbfbf;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#ccc;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

    padding-left:5px;

}

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:40px 0 20px;

}

.footer i{

    color:var(--secondary);

}



/*======================================
SOCIAL ICON
======================================*/

.footer .bi-facebook:hover{

    color:#1877f2;

}

.footer .bi-instagram:hover{

    color:#e4405f;

}

.footer .bi-whatsapp:hover{

    color:#25D366;

}



/*======================================
IMAGE EFFECT
======================================*/

img{

    transition:.4s;

}

img:hover{

    filter:brightness(103%);

}



/*======================================
UTILITY
======================================*/

.bg-light{

    background:#f8faf8 !important;

}

.text-success{

    color:var(--primary)!important;

}

.rounded{

    border-radius:20px!important;

}

.shadow{

    box-shadow:var(--shadow)!important;

}



/*======================================
SCROLLBAR
======================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#4b8648;

}



/*======================================
SELECTION
======================================*/

::selection{

    background:var(--primary);

    color:#fff;

}



/*======================================
BACK TO TOP BUTTON
======================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}