@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --orange: #FF6F20;
    --orange-hover: #ff9547;
    --violet: #7215DB;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
}
.body_public {
    background-image: url("../images/bg-campfire-lake-8e59688c01c72e6616789b6f359ed6fb.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: rgb(33, 37, 41);
    min-height: 100vh;
}
.body_user {
    background-image: url("../images/bg-road-2-bf5184be4eec354bd4f50aabbaaf6f94.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: var(--bs-body-color);
    min-height: 100vh;
    height: 100vh; 
    margin: 0; 
    padding: 0;
}
.body_admin {
    height: 100vh; 
    background: aliceblue; 
    margin: 0; 
    padding: 0;
}

/* COLORS */
.border-orange {
    border-color: var(--orange) !important;
}
.border-right {
    border-right: 1px solid;
}
.text-orange, .text-orange a {
    color:  var(--orange) !important;
}
.btn-orange, .bg-orange{
    background-color: var(--orange);
}
.shadow-orange {
    box-shadow: 1px 2px 20px var(--orange);
}
.btn-orange:hover {
    background: linear-gradient(45deg, var(--orange-hover), #ffb366);
}
.btn-outline-orange {
    color: var(--orange);
    border-color: var(--orange);
    padding: 4px 0;
}
.btn-outline-orange:hover {
    color: var(--orange);
    border-color: var(--orange);
    padding: 4px 0;
}
.btn-cookies-accept:hover {
    background: linear-gradient(45deg, var(--orange-hover), #ffb366);
    color: white;
}

/* NAV */
#languageDropdown.dropdown-toggle::after {
    color: var(--orange);
}
.navbar-toggler {
    color: var(--orange);
}
.navbar-expand-lg .navbar-nav{
    flex-direction: row;
}
.flag {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

/* ERRORS */
.errors ul, .success ul {
    list-style: none;
    padding: 0;
}
.erros {
    background-color: rgba(0,0,0,0.5);
}
.card .errors {
    background-color: rgba(255,255,255,0.5);
}

/* IMAGES */
.img-thumbnail {
    padding: 0;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%) !important;
    color: #f8f9fa !important;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}
footer .footer-brand {
    font-weight: 500;
    color: #7215DB;
}
footer .footer-contact {
    color: #999;
}
footer .footer-contact a {
    color: #7215DB;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer .footer-contact a:hover {
    color: #a98cff;
}

/* Fix reCAPTCHA v2 invisible */
.grecaptcha-badge {
    position: relative !important;
    transform: scale(0.9) !important;
    bottom: 0 !important;
    right: 0 !important;
    margin: 0 auto;
}

/* Bannière Cookies */
.cookie-consent-banner {
    display: none;
    position:fixed;
    bottom:1rem;
    left:1rem;
    right:1rem;
    color:#111;
    border:1px solid var(--orange);
    background-color: #FAE2CD;
    z-index:9999;
}
.cookie-banner-content {
    display: flex;
    align-items: center;
}
.cookie-banner-content p, .btn-cookies-accept, #cookie-deny-nonessential, .cookies-policy {
    font-size: 14px;
}
.cookies-policy h2 {
    font-size: 24px;
}
.cookies-policy h3 {
    font-size: 16px;
}
 .link-policy {
    font-size: 12px;
}
.cookies-policy h1, .cookies-policy h2 {
    text-align: center;
}
.btn-cookies-accept {
    background: linear-gradient(45deg, #ee6e13ff, #f15d079d);
    color: var(--white);
    border-radius: 5px;
    border:1px solid var(--orange);
    padding: 4px 0px;
}


/* ********************************* */
/************ Responsive ************/
/* ********************************* */

/* RESPONSIVE - GRANDS ECRANS */
@media (min-width: 992px) {
    /* FOOTER */
    footer {
        width: calc(100% - 220px);
        margin-left: 220px;
    }
}

/* RESPONSIVE - MOYENS ECRANS */
@media (max-width: 991.98px) {
    .menu-overlay.active {
        display: block;
        z-index: 1000;
    }
    main.container-fluid {
        margin-left: 0 !important;
    }

    /* FOOTER */
    footer {
        width: 100%;
        margin-left: 0;
    }
}

/* RESPONSIVE - TABLETTE */
@media (max-width: 768px) {
    /* FOOTER */
    footer .footer-content {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    footer {
        padding: 0.35rem 0.5rem;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 575.98px) {
    .mobile-top-divider {
        width: 90%;
        min-width: 120px;
        max-width: 260px;
    }
}
