:root {
    --color1: #498487;
    --color2: #f5f1e8;
    --color3: #3A3A3A;
    --color4: #444;
    --color5: #d8d2c8;
    --color6: #285759;
    --color7: #f9f8f7;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color2);
}

h2 {
    color: var(--color3);
    font-weight: 600;
    font-size: 35px;
}

.separator-title {
    width: 250px;
    height: 1px;
    margin: 12px auto 26px !important;
}

.navbar {
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: var(--color2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.navbar-logo {
    height: 85px;
    width: auto;
}

.navbar-brand {
    margin-left: 14px !important;
    color: var(--color4);
    font-family: 'Tangerine', sans-serif;
    font-weight: 700;
    font-size: 50px;
}

.navbar-brand:hover {
    color: var(--color3) !important;
}

.nav-link {
    color: var(--color1) !important;
    font-size: 18px;
    font-weight: 250;
    transition: 0.3s ease;
}

.nav-separator {
    width: 1px;
    height: 22px;
    background-color: var(--color5);
    margin: 0 10px;
    align-self: center;
}

.navbar ul {
    margin-left: auto;
    margin-right: auto;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:not(.collapsed) {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 3.2px;
    background-color: var(--color1);
    margin: 6px 0;
    transition: 0.3s ease;
}

.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    height: 92dvh;
    background-image: url('img/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.hero::before,
.hero-visites::before,
.hero-agences::before,
.hero-contact::before,
.hero-tour::before,
.hero-legal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.0),
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.0));
    z-index: 1;
}

.hero .container-hero {
    position: relative;
    z-index: 2;
}

.container-hero h1,
.hero-visites h1,
.hero-agences h1,
.hero-contact h1,
.hero-tour h1,
.hero-legal h1 {
    color: #F2F2F2;
    letter-spacing: 1.5px;
    font-weight: 540 !important;
    margin-right: auto;
    margin-left: auto;
    min-width: 70%;
    width: 80%;
    max-width: 1037px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.4s;
}

.container-hero hr,
.container-hero-visite hr,
.hero-agences hr,
.hero-contact hr,
.hero-tour hr,
.container-hero-legal hr {
    margin-right: auto;
    margin-left: auto;
    width: 83%;
}

.container-hero p,
.container-hero-visite p,
.container-hero-agences p,
.container-hero-contact p,
.container-hero-tour p,
.container-hero-legal p {
    color: #F2F2F2;
    letter-spacing: 1.6px;
    margin-top: 33px;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.7s;
}

.btn-hero {
    background-color: rgba(0, 0, 0, 0.593);
    letter-spacing: 1.5px;
    backdrop-filter: blur(2px);
    color: white;
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1s ease forwards 1.2s;
    text-decoration: none;
}

.btn-hero:hover {
    background-color: rgba(0, 0, 0, 0.326);
    box-shadow: 0 0 5.5px rgba(255, 255, 255, 0.7);
    border: 2px solid white;
    color: var(--color2);
}

.btn-hero:active:focus {
    background-color: rgba(0, 0, 0, 0.719) !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7) !important;
    outline: none !important;
    transform: none !important;
}

.visite-section {
    background-color: var(--color2);
    padding-top: 45px !important;
    padding-bottom: 80px !important;
}

.card-visite {
    height: 180px;
    object-fit: cover;
    background: var(--color7);
    margin: auto;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
}

.card-visite img {
    border-radius: 12px 12px 0 0;
}

.card-title {
    color: var(--color3);
    font-size: 22px;
    font-weight: 370;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.card-text {
    font-weight: 300;
    font-size: 18px;
    color: var(--color4);
}

.resume {
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 16.5px;
    color: var(--color4);
    line-height: 1.7;
}

.btn-visite {
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--color1);
    color: var(--color7);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    padding: 8px 20px;
}

.btn-visite:hover {
    background-color: #437c7f;
    color: var(--color7);
    transform: translateY(-2px);
    filter: drop-shadow(2px 5px 2px #b2b1b1);
}

.btn-all-visite {
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--color1);
    color: var(--color7);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    padding: 8px 20px;
}

.btn-all-visite:hover {
    background-color: #437c7f;
    color: var(--color7);
    transform: translateY(-2px);
    filter: drop-shadow(2px 5px 2px #b2b1b1);
}

.btn-all-visite:focus,
.btn-visite:focus,
.btn-agency:focus,
.btn-contact-agence:focus {
    background-color: #376e70 !important;
    color: var(--color7) !important;
    filter: drop-shadow(1px 2.5px 2px #b2b1b1) !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transform: translateY(2px) !important;
}

.agency-section {
    background-color: var(--color2);
}

.card-agency {
    background-color: var(--color7);
    background: var(--color7);
    margin: auto;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
}

.agency-first-p {
    max-width: 700px;
    padding-top: 10px;
    margin: 0 auto;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

.agency-section i {
    font-size: 38px;
    color: var(--color3);
}

.card-agency h5 {
    color: var(--color3);
    font-size: 18px;
    font-weight: 450;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.card-agency p {
    font-size: 16px;
    color: var(--color4);
}

.btn-agency {
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--color1);
    color: var(--color7);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    padding: 8px 20px;
}

.btn-agency:hover {
    background-color: #437c7f;
    color: var(--color7);
    transform: translateY(-2px);
    filter: drop-shadow(2px 5px 2px #b2b1b1);
}

.about-section {
    background-color: var(--color2);
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.about-text {
    max-width: 700px;
    padding-top: 10px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--color4);
    font-style: italic;
    line-height: 1.7;
}

.about-icons .icon-item {
    text-align: center;
}

.about-icons i {
    display: block;
    font-size: 38px;
    color: var(--color3);
    margin-bottom: 20px !important;
}

.about-icons p {
    font-size: 16px;
    color: var(--color4);
}

.about-wrapper {
    background: var(--color7);
    margin: auto;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
}

.about-separator {
    width: 1px;
    height: 100px;
    background: #d8d2c8;
    margin: auto 20px;
}

footer {
    padding-top: 22px;
    padding-bottom: 22px;
    background-color: var(--color7);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.12);
}

footer a {
    text-decoration: none;
    transition: ease 0.3s;
}

.footer-link {
    color: var(--color1);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--color6);
    scale: 1.05;
}

.footer-icon {
    color: var(--color1);
    font-size: 24px;
}

.footer-icon:hover {
    color: var(--color6);
    scale: 1.1;
}

.btn-lang-active {
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--color1);
}

.btn-lang {
    text-decoration: none;
    color: var(--color5);
    font-size: 0.9rem;
}

.btn-lang:hover {
    color: var(--color1);
}

.separator-footer {
    margin: 10px auto;
    width: 90%;
}

.copyright {
    color: var(--color1);
}

.bi-envelope {
    -webkit-text-stroke: 0.5px currentColor;
}

.hero-visites {
    height: 45vh;
    background: url('img/hero-visite.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.agence-card {
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: 0.3s ease;
}

.agence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-agences {
    height: 45vh;
    background: url('img/agences-hero.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.container-hero-agences,
.hero-agences,
.container-hero-contact,
.hero-contact,
.container-hero-tour,
.hero-tour,
.container-hero-visite,
.hero-visites,
.container-hero-legal,
.hero-legal {
    z-index: 2;
}

.agences-tarifs {
    background-color: var(--color2);
}

.tarif-card {
    padding: 28px;
    background: var(--color7);
    margin: auto;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);

}

.tarif-card h5 span {
    color: var(--color4);
    font-weight: 370 !important;
    line-height: 1.7;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-size: 16.5px;
}

.tarif-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarif-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color4);
}

.tarif-list li:last-child {
    border-bottom: none;
}

.tarif-list strong {
    color: var(--color3);
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 550 !important;
    line-height: 1.7;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.tarif-info {
    padding: 22px;
    background: var(--color7);
    margin: auto;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
}

.mentions-legales h5,
.tarif-info h5,
.tarif-card h5,
.tour-section h5 {
    color: var(--color3);
    font-size: 22px;
    font-weight: 470;
    line-height: 1.7;
    letter-spacing: 0.5px;
    padding-bottom: 18px;
}

.tarif-info ul {
    padding-left: 18px;
    margin: 0;
}

.tarif-info li {
    list-style: none;
    color: var(--color4);
    margin-bottom: 6px;
    font-weight: 370 !important;
    line-height: 1.7;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-size: 16.5px;
}

.tarif-info li::before {
    content: "•";
    padding-right: 8px;
    color: var(--color3);
}

.agences-tarifs li {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16.5px;
    color: var(--color4);
    line-height: 1.7;
}

.btn-contact-agence {
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--color1);
    color: var(--color7);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    padding: 8px 20px;
}

.btn-contact-agence:hover {
    background-color: #437c7f;
    color: var(--color7);
    transform: translateY(-2px);
    filter: drop-shadow(2px 5px 2px #b2b1b1);
}

.hero-contact {
    height: 45vh;
    background: url('img/contact-hero.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.contact-engagement {
    background-color: var(--color2);
}

.contact-engagement p {
    max-width: 780px;
    padding-top: 10px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--color4);
    font-style: italic;
    line-height: 1.7;
}

.contact-options {
    background-color: var(--color2);
    padding-top: 0px !important;
    padding-bottom: 150px !important;
}

.contact-card {
    padding: 28px;
    background: var(--color7);
    margin: auto;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color3);

}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    margin: 15px auto;
    box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.231);
}

.email-icon {
    background: rgba(100, 150, 255, 0.7);
}

.whatsapp-icon {
    background: rgba(50, 200, 120, 0.7);
}

.instagram-icon {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
}

.hero-latin {
    height: 45vh;
    background: url('img/pantheon.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.hero-cite {
    height: 45vh;
    background: url('img/cite.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.hero-marais {
    height: 45vh;
    background: url('img/vosges.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.hero-montmartre {
    height: 45vh;
    background: url('img/montmartre.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.tour-section {
    margin: 0 auto 3rem auto;
    padding: 2.5rem 2rem;
    background: var(--color7);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
    width: 94%;

}

.tour-section p {
    color: var(--color4);
    margin-bottom: 6px;
    font-weight: 370 !important;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-size: 16.5px;

}

.tour-itinerary-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tour-itinerary-list li {
    list-style: none;
    color: var(--color4);
    margin-bottom: 18px;
    margin-top: 18px;
    font-weight: 370 !important;
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-size: 16.5px;
}

.iti-tour {
    opacity: 0.8;
    padding-top: 30px;
}

.tour-info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tour-info-list li {
    list-style: none;
    color: var(--color4);
    margin-bottom: 16px;
    margin-top: 16px;
    font-weight: 370 !important;
    line-height: 1.7;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-size: 16.5px;

}

.tour-info-list strong {
    opacity: 1;
    font-weight: 480;
    color: var(--color3);
}

.visite-section-tour {
    background-color: var(--color2);
    padding-top: 45px !important;
    padding-bottom: 0px !important;
}

.tour-cta {
    padding-top: 30px;
    padding-bottom: 70px;
}

.tour-cta h3 {
    color: var(--color3);
    font-size: 28px;
    font-weight: 500;
}

.hero-legal {
    height: 45vh;
    background: url('img/hero-legal.jpg');
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset 0 40px 20px -40px black,
        inset 0 -40px 20px -40px black;
    position: relative;
}

.mentions-legales {
    margin: 45px auto 3rem auto;
    padding: 20px 32px;
    background: var(--color7);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(3px 3px 4px #b2b1b1);
    width: 94%;
}

.mentions-legales p {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16.5px;
    color: var(--color4);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.mentions-legales strong {
    font-size: 16.5px;
    color: var(--color3);
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 768px) {

    .nav-separator {
        height: 1px;
        width: 80px;
        margin: 8px 0 8px 0;
        align-self: flex-start;
    }

    .hero {
        height: 89dvh;
    }

    .container-hero h1,
    .container-hero-visite h1,
    .container-hero-agences h1,
    .container-hero-contact h1,
    .container-hero-tour h1,
    .container-hero-legal h1 {
        font-size: 32px;
        min-width: 88%;
    }

    .container-hero p,
    .container-hero-visite p,
    .container-hero-agences p,
    .container-hero-contact p,
    .container-hero-tour p,
    .container-hero-legal p {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .btn-hero {
        width: 65%;
        margin-bottom: 18px;
    }

    .btn-hero.me-4 {
        margin-right: 0 !important;
    }

    .about-separator {
        display: block !important;
        width: 60%;
        height: 1px;
        margin: 20px auto;
    }

    .navbar ul {
        margin-top: 20px;
    }

}

@media (min-width: 768.1px) and (max-width: 903px) {
    .nav-link {
        font-size: 17px;
    }

    .navbar-logo {
        height: 75px;
        width: auto;
    }

    .navbar-brand {
        margin-left: 10px !important;
        font-size: 40px;
    }

    .nav-separator {
        margin: 0 6px;
    }
}

@media (min-width: 768px) {


    .nav-link:hover {
        transform: scale(1.12);
        color: var(--color6) !important;
    }

    .ms-md-5 {
        margin-left: 80px !important;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}