/* ==========================================================
   i-Chimes Fitness Academy
   Main Stylesheet
   Version 1.0
========================================================== */

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================
   GLOBAL
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111111;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

p{
    color:#d8d8d8;
}

section{
    padding:90px 0;
}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{
    background:#000 !important;
    transition:.4s;
    padding:12px 0;
}

.navbar-brand img{
    height:60px;
}

.nav-link{
    color:#fff !important;
    margin-left:18px;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:#E31E24 !important;
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-danger{
    background:#E31E24;
    border:none;
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;
}

.btn-danger:hover{
    background:#c3141d;
    transform:translateY(-2px);
}

.btn-light{
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    background:url("../images/hero-banner.webp") center center/cover no-repeat;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.15);

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-image{

    width:100%;

    display:block;

}

/* ==========================================================
   FEATURE BOXES
========================================================== */

.feature-box{

    background:#181818;

    border:1px solid #2c2c2c;

    border-radius:15px;

    padding:35px;

    transition:.35s;

    height:100%;
}

.feature-box:hover{

    transform:translateY(-8px);

    border-color:#E31E24;

    box-shadow:0 15px 35px rgba(227,30,36,.25);

}

.feature-box i{

    color:#E31E24;

    margin-bottom:20px;
}

/* ==========================================================
   CARDS
========================================================== */

.card{

    background:#181818;

    border:1px solid #333;

    color:#fff;

    border-radius:15px;

    overflow:hidden;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#E31E24;

    box-shadow:0 15px 35px rgba(227,30,36,.20);

}

.card-body{

    padding:30px;

}

/* ==========================================================
   SECTIONS
========================================================== */

.bg-black{

    background:#0b0b0b;

}

.bg-dark{

    background:#161616 !important;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#000;

    padding:70px 0;

    text-align:center;

}

footer img{

    max-width:220px;

    margin-bottom:20px;

}

footer h4{

    margin-bottom:10px;

}

footer hr{

    border-color:#333;

    margin:25px auto;

    width:120px;

}

footer p{

    color:#bfbfbf;

    margin-bottom:0;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

    .navbar-brand img{

        height:50px;

    }

    .nav-link{

        margin-left:0;

        padding:10px 0;

    }

    .hero{

        min-height:auto;

    }

    section{

        padding:70px 0;

    }

}

@media(max-width:768px){

    h1{

        font-size:2.3rem;

    }

    h2{

        font-size:2rem;

    }

    .feature-box{

        margin-bottom:20px;

    }

    .card{

        margin-bottom:25px;

    }

}

@media(max-width:576px){

    .btn-danger,
    .btn-light{

        width:100%;

        margin-bottom:10px;

    }

}