/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/**************************/
/* General Styles      */
/**************************/
:root {
    --primary: #1c262f;
    --primary-light: #212d37;
    --secondary: #60c3ef;
    --tertiary: #60c3ef;
    --gradient: linear-gradient(to right, #60c3ef, #60c3ef);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 60px;
    font-weight: 500;
}

button {
    font-family: sans-serif;
}

p, ul, h4 {
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
}

li {
    list-style-type: none;
}

/* Section Background Fix */
.home {
    padding-top: 80px;
    padding-bottom: 50px;
}

.about, .services, .plans, .work, .contact {
    height: auto;
    position: relative;
    padding: 80px 0;
}

.services, .work, .contact, .testimonial, .footer {
    background-color: var(--primary);
}

.about, .plans, .company, .newsletter, .location {
    background-color: var(--primary-light);
}

.bottom {
    background-color: black;
}

/**********************/
/* Navigation      */
/**********************/
.navbar {
    font-weight: 500;
    font-size: 0.875rem;
    background-color: var(--primary);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

.navbar .navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.logo-img {
    width: 80px;
    height: auto;
}

/****************/
/* Home      */
/****************/
.home {
    background-image: url(../assets/images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.para {
    width: 50%;
}

/* Correction pour le chevauchement de l'image */
.logo-container {
    margin-bottom: 20px;
    text-align: center;
}

#header .container {
    padding-top: 20px;
}

.logo-container img {
    max-width: 80%;
    height: auto;
}

/***********************/
/* Information      */
/***********************/
.information .container-fluid .row div:first-child {
    background-color: var(--primary);
}

/******************/
/* Button      */
/******************/
.btn {
    color: white;
    border-radius: 0;
    border-width: 2px;
    padding: 10px 30px;
    border-image-slice: 1;
    background: transparent;
    border-image-source: var(--gradient);
    box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
    color: white;
    box-shadow: none;
    transform: translate(5px, 5px);
}

/*************************/
/* Media Queries      */
/*************************/
@media only screen and (max-width: 1024px) {
    .services, .work, .testimonial, .about, .contact, .plans {
        height: auto;
        padding: 60px 0;
    }
}

@media only screen and (max-width: 540px) {
    h1 {
        font-size: 30px;
    }

    .para {
        width: 100%;
    }
}
}