/* ============================================================
   BREAKMATE
   STYLE.CSS
   Version : 1.0
   Author  : BreakMate Team
============================================================ */

/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================
   ROOT COLOR
========================= */

:root{

    --primary:#5F8D4E;
    --primary-light:#A4BE7B;

    --secondary:#E5D9B6;

    --background:#F8F5E9;

    --white:#FFFFFF;

    --text:#2F2F2F;

    --gray:#6C757D;

    --light-gray:#EEEEEE;

    --danger:#E63946;

    --warning:#FFB703;

    --success:#4CAF50;

    --shadow:0 15px 35px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.3s ease;

}


/* =========================
   RESET
========================= */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--background);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}


/* =========================
   TYPOGRAPHY
========================= */

h1{

    font-size:58px;

    font-weight:700;

    line-height:1.2;

}

h2{

    font-size:42px;

    font-weight:700;

}

h3{

    font-size:28px;

    font-weight:600;

}

h4{

    font-size:22px;

    font-weight:600;

}

h5{

    font-size:18px;

    font-weight:600;

}

p{

    color:var(--gray);

    font-size:17px;

}


/* =========================
   LINK
========================= */

a{

    text-decoration:none;

    transition:var(--transition);

}


/* =========================
   BUTTON
========================= */

.btn-breakmate{

    background:var(--primary);

    color:white;

    padding:15px 35px;

    border:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    box-shadow:var(--shadow);

}

.btn-breakmate:hover{

    background:#4d743e;

    transform:translateY(-3px);

    color:white;

}


.btn-outline-breakmate{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-outline-breakmate:hover{

    background:var(--primary);

    color:white;

}


/* =========================
   SECTION
========================= */

section{

    padding:90px 0;

}


/* =========================
   TITLE
========================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

}

.section-title h2{

    margin-top:10px;

}

.section-title p{

    margin-top:15px;

}


/* =========================
   CARD
========================= */

.card-breakmate{

    background:white;

    border-radius:25px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.3s;

    height:100%;

    border:none;

}

.card-breakmate:hover{

    transform:translateY(-8px);

}


.card-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:rgba(95,141,78,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:var(--primary);

    margin-bottom:20px;

}


/* =========================
   HERO
========================= */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:100px;

}

.hero h1{

    margin-bottom:25px;

}

.hero p{

    margin-bottom:35px;

}

.hero-image img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}


/* =========================
   FLOAT ANIMATION
========================= */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/* =========================
   HOW IT WORKS
========================= */

.step-box{

    text-align:center;

}

.step-number{

    width:80px;

    height:80px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:700;

    margin:auto;

    margin-bottom:20px;

    box-shadow:var(--shadow);

}


/* =========================
   NAVBAR
========================= */

.navbar{

    padding:18px 0;

    transition:.3s;

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

    color:var(--primary)!important;

}

.nav-link{

    color:var(--text)!important;

    margin-left:20px;

    font-weight:500;

}

.nav-link:hover{

    color:var(--primary)!important;

}


/* =========================
   FOOTER
========================= */

footer{

    background:var(--primary);

    color:white;

    padding:40px 0;

}

footer p{

    color:#f3f3f3;

    margin:0;

}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#ddd;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    h1{

        font-size:42px;

    }

    h2{

        font-size:34px;

    }

    .hero{

        text-align:center;

    }

    .hero-image{

        margin-top:50px;

    }

}

@media(max-width:768px){

    section{

        padding:70px 0;

    }

    h1{

        font-size:34px;

    }

    h2{

        font-size:28px;

    }

    p{

        font-size:15px;

    }

    .btn-breakmate,

    .btn-outline-breakmate{

        width:100%;

        margin-bottom:15px;

    }

}

/* =======================================
   NAVBAR
======================================= */

.navbar{

    background:rgba(248,245,233,.85);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    transition:.3s;

    padding:18px 0;

}

.navbar.scrolled{

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

    color:var(--primary)!important;

}

.navbar-brand span{

    color:var(--primary);

}

.nav-link{

    color:var(--text)!important;

    margin:0 12px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.navbar-toggler{

    color:var(--primary);

}

/* =======================================
   FOOTER
======================================= */

footer{

    background:var(--primary);

    padding:70px 0 40px;

    color:white;

}

footer h3{

    font-weight:700;

    margin-bottom:15px;

}

footer p{

    color:#ecf0ec;

    font-size:16px;

}

footer small{

    color:#f5f5f5;

    line-height:1.8;

}

.nav-link.active{

    color:var(--primary)!important;

    font-weight:600;

}

.nav-link.active::after{

    width:100%;

}

/* ==================================================
   FEATURES
================================================== */

.breakmate-features{

    padding:100px 0;

}

.feature-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.feature-icon{

    width:80px;

    height:80px;

    background:#eef8ee;

    color:var(--primary);

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    font-size:32px;

}

.feature-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.feature-card p{

    color:#6c757d;

    margin:0;

}