﻿/* ============================================================
   BASE — structure uniquement
   (aucun style visuel, aucune couleur)
============================================================ */
/* Navbar publique */
.navbar.fixed-top {
    z-index: 1030; /* valeur Bootstrap officielle */
}

/* Quand la barre admin est là */
.has-admin-bar .navbar.fixed-top {
    top: 0px;
}

/* Layout global */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 72px; /* hauteur réelle de ta navbar */
}

/* Footer collé en bas */
footer {
    margin-top: auto;
    background-color: var(--color-bg);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-main {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.3em;
    letter-spacing: -0.02em;
    color: var(--color-table-header);
}

.brand {
    font-size: 0.55em;
}

.nav-border {
    border-right: 5px solid currentColor;
    font-size: 0.5em;
    margin: 0 10px;
}

a > i
{
    transition: transform .5s ease, color .5s ease;
}


a > i:hover {
    transform: scale(1.5);
    color: var(--color-link-hover);
}
#logo {
    background-color: rgb(209 250 229);
    border-radius: var(--radius-default);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    #logo:hover {
        background-color: rgb(167 243 208);
    }

.bg-emerald-100
{
    --tw-bg-opacity:1;
    background-color: rgb(209 250 229);
}


.text-emerald-700
{
    color: rgb(4 120  87) !important;
}


.main-button .nav-link {
    background-color: var(--bg-main-button);
    border-radius: var(--radius-default);
    text-align: center;
    color: var(--color-bg) !important;
    transition: 0.15s ease;
}

.rounded-full {
    border-radius: var(--radius-default) !important;
}

div .main-button {
    background-color: var(--bg-main-button);
    border-radius: var(--radius-default);
    text-align: center;
    color: var(--color-bg) !important;
    transition: 0.15s ease;
}

div .main-button:hover {
    background-color: var(--bg-main-button);
    border-radius: var(--radius-default);
    text-align: center;
    color: var(--color-bg) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/*

    Footer section
*/

.footer-section {
    background-color: var(--color-bg);
}

.footer-title {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
}

    .footer-links a:hover {
        color:green;
    }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--bs-success);
    margin-top: 3px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f7f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0a6b4f;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.footer-social:hover {
    background-color: #e6f4ee;
}

.footer-social:hover i {
    color: #057a5c;
}

.custom_link:hover
{
    color:green;
}

.navbar-toggler {
    background-color: var(--color-bg-alt3);
    color: var(--color-bg-alt) !important;
}
