body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.text-orange {
    color: #ee7911 !important;
}

.text-vert {
    color: #32623d !important;
}

.bg-orange {
    background-color: #ee7911 !important;
}

.bg-vert {
    background-color: #32623d !important;
}

.bg-orange-opacity {
    background-color: #ee78119a !important;
}

.bg-vert-opacity {
    background-color: #32623d9a !important;
}

.navbar .nav-link {
    font-weight: bold;
    text-decoration: none;
}

.navbar .nav-link:hover {
    text-decoration: underline;
}

.sticky-under-navbar {
    position: sticky;
    top: 64px;
    /* hauteur de ta navbar */
    z-index: 1030;
    /* au-dessus du contenu */
    background-color: white;
}


.bg-header {
    height: 72vh;
    background-image: url('../images/fond-header.png');
    background-size: cover;
    background-position: center;
    margin-top: 1rem !important;
}


h1 {
    text-align: center;
    margin-top: 2rem;
    color: #343a40;
}

.fade-in {
    opacity: 0;
    animation: fadeIn ease-in 1s forwards;
    animation-delay: 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #32623d !important;
    box-shadow: 0 0 0 .25rem rgba(13, 253, 81, 0.25) !important;
}

.btn-orange {
    color: #ffffff;
    background-color: #ee7811de;
    border-color: #ee7811de;
}

.btn-outline-orange {
    color: #ee7911;
    background-color: #ffffff;
    border-color: #ee7911;
}

.border-orange {
    border-color: #ee7811de;
    box-shadow: 0 0 0 .15rem #ee7911 !important;
}

.double-border-bottom {
    /* position: relative; */
    padding-bottom: 8px;
    /* pour laisser la place au pseudo */
    border-bottom: 3px solid #ee7911;
    /* première couleur */
}

.double-border-bottom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    /* ou un autre % selon le rendu voulu */
    background-color: #32623d;
    /* deuxième couleur */
}


.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
    color: #ffffff;
    background-color: #ff7700;
    border-color: #ffffff;
}

.btn-outline-orange:hover,
.btn-outline-orange:focus,
.btn-outline-orange:active {
    color: #ffffff;
    background-color: #ee7911;
    border-color: #ee7911;
}

.nav-link {
    color: #32623d !important;
}

.btn-vert {
    color: #ffffff !important;
    background-color: #32623d;
    border-color: #32623d;
}

.btn-vert:hover,
.btn-vert:focus,
.btn-vert:active {
    color: #ffffff;
    background-color: #486232e0;
    border-color: #ffffff;
}

.btn-outline-vert {
    color: #32623d;
    background-color: #ffffff;
    border-color: #32623d;
}

.btn-outline-vert:hover,
.btn-outline-vert:focus,
.btn-outline-vert:active {
    color: #ffffff;
    background-color: #32623d;
    border-color: #32623d;
}

.prix-euro {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ee7911;
    /* ou la couleur que tu veux */
}

.prix-euro sup {
    font-size: 0.65em;
    vertical-align: baseline;
    color: #32623d !important;
}

.ui-menu {
    background-color: #32623d;
    color: white;
    border: 1px solid #32623d;
    z-index: 2000;
}

.ui-menu-item-wrapper:hover {
    background-color: #546232;
    border-color: #ee7911;
}

.form-floating>.form-control {
    height: calc(3.5rem + 2px);
    /* ou ajustable selon ton design */
    padding: 1rem .75rem;
    font-size: 1rem;
}

.form-floating>label {
    padding: .5rem .75rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.form-floating>.form-control.form-control-lg {
    height: calc(3.8rem + 2px);
    padding: 1.1rem .75rem;
    font-size: 1.05rem;
}

#map {
    height: 350px;
}

/* Collapse */
.accordion-button:not(.collapsed) {
    color: #32623d !important;
    font-weight: bold;
    background-color:  #ee78117d !important;
}

.accordion-button.collapsed {
    color: #32623d !important;
    background-color:  #ee78112d !important;
}

/* Avatar */
.profile-card {
    position: relative;
    padding-top: 60px;
    margin-top: 100px;
}

.profile-avatar-container {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(206, 212, 218);
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.edit-avatar-button {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%, 30%);
    z-index: 2;
}

.profile-avatar-container.verified .profile-avatar {
    border: 4px solid #28a745;
}

.profile-avatar-container.verified::after {
    content: "\F531";
    /* bi-shield-check-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: -12px;
    right: 40%;
    background-color: #fff;
    color: #28a745;
    border-radius: 50%;
    padding: 0px;
    z-index: 100;
}

/* Profil sur les notes */

.img-note .profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgb(206, 212, 218);
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.img-note.verified .profile-avatar{
    border: 2px solid #28a745;
}

.img-note.verified::after {
    content: "\F531";
    /* bi-shield-check-fill */
    font-family: 'bootstrap-icons';
    font-size: 10px;
    position: absolute;
    bottom: -10px;
    right: 40%;
    background-color: #fff;
    color: #28a745;
    border-radius: 50%;
    padding: 0px;
    z-index: 100;
}

.footer-bg-dark-subtle {
    font-size: 0.9rem !important;
}

.no-caret::after {
	display: none !important;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767.99px) {
    .bg-header {
        height: 100vh;
    }

    .bg-header .display-5 {
        font-size: calc(1.1rem + 1.5vw) !important;
    }

    .bg-header .lead {
        font-size: 0.8rem !important;
    }

    .footer-bg-dark-subtle {
    font-size: 0.7rem !important;
}
}

@media screen and (max-height: 1333.99px) {
    .bg-header {
        margin-top: 1.2rem !important;
    }
}

.app-hero {
    min-height: 92vh;
    padding: 7rem 0 3rem;
    background:
        linear-gradient(90deg, rgba(16, 34, 23, 0.9), rgba(16, 34, 23, 0.54)),
        url('../images/fond-header.png') center/cover no-repeat;
    color: #fff;
}

.app-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 2rem;
    align-items: center;
}

.app-hero__content h1 {
    margin: 0;
    color: #fff;
    text-align: left;
    font-size: clamp(3rem, 4vw, 5.5rem);
    font-weight: 800;
}

.app-hero__lead {
    max-width: 620px;
    margin: 1rem 0 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

.app-kicker {
    margin-bottom: .4rem;
    color: #f7a65c;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.app-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.app-actions .btn,
.quick-search .btn,
.trust-strip .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 58px;
    border-radius: 8px;
    font-weight: 800;
}

.quick-search .btn {
    box-shadow: 0 14px 30px rgba(238, 121, 17, .24);
}

.quick-search {
    display: grid;
    gap: .85rem;
    padding: 1.15rem;
    border: 2px solid rgba(255, 209, 106, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    color: #1f2d24;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .26), 0 0 0 8px rgba(255, 255, 255, .16);
}

.quick-search__title {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    align-items: end;
    padding: .15rem .1rem .25rem;
}

.quick-search__title strong {
    color: #1f7447;
    font-size: 1.35rem;
    line-height: 1.1;
}

.quick-search__title span {
    color: #6c757d;
    font-size: .9rem;
    font-weight: 800;
}

.quick-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: .85rem;
}

.app-band {
    padding: 3rem 0;
    background: #fff;
}

.app-band--light {
    background: #f6f8f5;
}

.app-section-heading {
    max-width: 680px;
    margin-bottom: 1.4rem;
}

.app-section-heading h2,
.trust-strip h2 {
    margin: 0;
    color: #1f2d24;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    min-height: 190px;
    padding: 1.2rem;
    border: 1px solid #e6ebe5;
    border-radius: 8px;
    background: #fff;
}

.feature-card h3 {
    margin: .8rem 0 .45rem;
    color: #32623d;
    font-size: 1.2rem;
    font-weight: 800;
}

.feature-card p {
    margin: 0;
    color: #536157;
}

.route-list {
    display: grid;
    gap: .75rem;
}

.route-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: .8rem;
    align-items: center;
    padding: .9rem 1rem;
    border: 1px solid #e1e7df;
    border-radius: 8px;
    background: #fff;
    color: #1f2d24;
    text-decoration: none;
}

.route-item:hover {
    color: #1f2d24;
    border-color: #ee7911;
}

.route-item__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef5ef;
    color: #32623d;
}

.route-item strong,
.route-item small {
    display: block;
}

.route-item small {
    margin-top: .15rem;
    color: #6c757d;
}

.trust-strip {
    padding: 3rem 0;
    background: #32623d;
    color: #fff;
}

.trust-strip h2,
.trust-strip p {
    color: #fff;
}

.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media screen and (max-width: 991.98px) {
    .app-hero {
        min-height: auto;
        padding-top: 6rem;
    }

    .app-hero__inner,
    .feature-grid,
    .trust-strip__inner {
        grid-template-columns: 1fr;
    }

    .trust-strip__inner {
        display: grid;
    }
}

@media screen and (max-width: 575.98px) {
    .app-hero__content h1 {
        font-size: 3rem;
    }

    .app-hero__lead {
        font-size: 1rem;
    }

    .app-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .quick-search__row {
        grid-template-columns: 1fr;
    }
}
