/* Caniparc - Style adapté du site actuel */

/* Import Font */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

/* CSS Variables & Reset */
:root {
    --primary-color: #ffa900;
    /* Orange Caniparc */
    --secondary-color: #091337;
    /* Bleu foncé */
    --text-color: #4d546f;
    --bg-color: #fff;
    --bg-light: #f2f3f5;
    --bg-yellow: #ffdb17;
    --border-color: #e1e1e1;
    --container-width: 1200px;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-weight: 300;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 43px;
}

h3 {
    font-size: 37px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 13px;
}

p {
    font-weight: 300;
    color: var(--text-color);
    font-size: 17px;
    line-height: 31px;
}

/* Buttons (Match current site) */
.btn {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    padding: 15px 60px;
    font-weight: 400;
    border: 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    display: inline-block;
    cursor: pointer;
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn-primary {
    background-image: linear-gradient(25deg, rgb(255 219 23) 0%, rgb(255 169 0) 95%);
    color: var(--secondary-color);
    transition: background 1s ease-out;
    box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}

.btn-primary:hover {
    background-image: linear-gradient(25deg, rgb(255 169 0) 0%, rgb(255 219 23) 95%);
    color: var(--secondary-color);
}

.btn-secondary {
    background-image: linear-gradient(25deg, rgb(255 219 23) 0%, rgb(255 169 0) 95%);
    color: var(--secondary-color);
}

.btn-third {
    background-image: linear-gradient(25deg, rgb(255, 235, 123) 0%, rgb(255, 202, 97) 95%);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 85px;
}

/* Header / Navigation (Match current site) */
.site-header {
    background: transparent;
    transition: 0.3s ease;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.site-header.nav-bg {
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0, 141, 236, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo img {
    width: 150px;
}

.main-nav ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-nav .nav-item {
    padding: 20px 10px;
}

.main-nav a {
    font-weight: 500;
    color: var(--secondary-color);
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding-top: 250px;
    padding-bottom: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 20px;
    margin-bottom: 2rem;
}

.h1Home {
    font-size: 56px;
}

/* Sections */
.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    margin-bottom: 30px;
    font-weight: 400;
}

.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

/* BG Yellow (Match current) */
.bg-yellow {
    background-color: #ffdb17;
}

/* Feature Section */
.feature {
    position: relative;
}

.feature-item {
    display: flex;
    margin-bottom: 2rem;
}

.feature-item h4 {
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-item p {
    line-height: 25px;
}

.feature-icon {
    display: inline-block;
    height: 90px;
    width: 90px;
    border-radius: 5px;
    color: #fff;
    font-size: 45px;
    line-height: 90px;
    background: var(--primary-color);
    box-shadow: 0px 18px 25px 0px rgba(0, 141, 236, 0.1);
    text-align: center;
    transition: 0.2s ease;
    margin-right: 1rem;
}

.feature-item:hover .feature-icon {
    box-shadow: 0px 18px 43px 0px var(--primary-color);
}

/* Footer */
.site-footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-columns h3 {
    color: #fff;
}

.footer-columns a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-columns a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.w-70 {
    width: 70%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 0.25rem;
}

.primary-shadow {
    box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}

/* Responsive */
@media (max-width: 991px) {
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .nav-item {
        padding: 10px 0;
    }

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 32px;
    }

    .hero-section {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}