/* Main.css */
:root {
    --black: #425059;
    --light-grey: #F0F0F0;
    --orange: #EF4023;
}

html {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
p,
li,
ul,
a {
    font-family: 'albert';
}

h1 {
    font-size: 2.5rem;
    color: var(--orange);
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    font-size: 1rem;
    line-height: 1.25;
}

a {
    color: var(--black);
    text-decoration: none;
}

main {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 16vw;
    padding-right: 16vw;
}

@media screen and (max-width:768px) {
    main {
        padding-right: 4rem;
        padding-left: 4rem;
    }
}

@media screen and(max-width:425px) {
    main {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.button {
    background-color: var(--orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: .5rem;
    width: auto;
    align-self: flex-start;
    text-transform: uppercase;
}

.button:hover {
    background-color: #ff694f;
}

/* -------------------------------------------------------------------------- */
/*                                     NAV                                    */
/* -------------------------------------------------------------------------- */

nav {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--light-grey);
    position: relative;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.nav-menu li {
    text-transform: uppercase !important;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu li a:hover {
    font-weight: bold;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    /* pousse le burger à droite */
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Desktop: menu à droite */
.right {
    margin-left: auto;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .burger {
        display: flex;
    }

    /* ne PAS cacher .right ! */
    .right {
        margin-left: 0;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: var(--light-grey);
        gap: 1rem;
        padding: 1rem 2rem;
        display: none;
        /* caché par défaut */
        z-index: 10;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */

footer {
    background-color: var(--light-grey);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 12rem;
    padding-right: 12rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

footer h2 {
    margin-bottom: 1.5rem;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .col-1>* {
    margin-bottom: 2rem;
}

footer .rs-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

footer .phone {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

footer a:hover {
    color: var(--orange);
}

@media screen and (max-width : 768px) {
    footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media screen and (max-width:486px) {
    footer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                   ACCUEIL                                  */
/* -------------------------------------------------------------------------- */

.carousel {

    min-height: 70vh;
    background-size: cover;
    max-width: 100% !important;
    position: relative;
    border-radius: 8px;
    margin-bottom: 5rem;
}

.carousel .overlay {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.43) 46%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.carousel h2 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
    color: white;
    font-size: 2rem;
    font-weight: normal;
}

.carousel a {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    display: none;
}

.home-1 {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.home-1>* {
    width: 50%;
}

.home-1-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-1-left .button {
    width: fit;
}

.home-1-right img {
    width: 100%;
    height: 100%;
    max-height: 20rem;
    object-fit: cover;
    border-radius: 8px;
}

/* Section 2 */
.home-2 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-height: 70vh;
}

.home-2>* {
    width: 50%;
    max-height: 70vh;

}

.home-2-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;

    align-items: start;

}

.home-2-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    /* remplit, recadre au besoin */
    display: block;
    min-width: 0;
    min-height: 0;
}


.home-2-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-2-right .img-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.home-2-right .img-container img {
    width: 50%;
}

@media screen and (max-width:1024px) {
    .home-2 {
        flex-direction: column;
        max-height: fit-content;
    }

    .home-2>* {
        width: 100%;
        max-height: fit-content;
    }

    .home-2-left {
        height: 85vh;
    }

    .home-2-right {
        gap: 32px;
    }
}

@media screen and (max-width : 768px) {

    .home-1>* {
        width: 100% !important;
    }

    .home-1-right {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    .carousel h2 {
        top: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                  SERVICES                                  */
/* -------------------------------------------------------------------------- */

.service-h1 {
    margin-bottom: 5rem;
}

.service-component {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-component-inner {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.service-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .service-component-inner {
        flex-direction: column;
    }

    .service-desc {
        gap: 2rem;
    }

    .service-desc .button {
        align-self: end;
    }
}

/* -------------------------------------------------------------------------- */
/*                              NOS DESTIONATINOS                             */
/* -------------------------------------------------------------------------- */

.desti-h1 {
    margin-bottom: 5rem;
}

.destinations-component {
    margin-bottom: 10rem;
}

.desti-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-bottom: 2rem;
    gap: 2rem;
}

.desti-top .desti-img {
    grid-column: span 4;
    width: 100%;
}

.desti-top .desti-top-right {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.desti-bottom {
    width: 100%;
}

@media screen and (max-width:1024px) {
    .desti-img {
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width:425px) {


    .desti-img {
        width: auto !important;
        grid-column: span 12 !important;
    }

    .desti-top-right {
        grid-column: span 12 !important;
    }

    .desti-bottom {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/*                                   valeurs                                  */
/* -------------------------------------------------------------------------- */

.val-h1 {
    margin-bottom: 5rem;
}

.section-val-1,
.section-val-2,
.section-val-3 {
    margin-bottom: 10rem;
}

.section-val-1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


h2 {
    text-transform: uppercase;
}

.section-val-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-val-2 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.section-val-2 ul li {
    grid-column: span 1;
}

.section-val-2 ul li h3 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
}

.val-2-bot {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.val-2-bot img {
    width: 50%;
}

.section-val-3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-val-3 .valeur-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.vge-1 {
    grid-area: 1 / 1 / 2 / 2;
}

.vge-2 {
    grid-area: 1 / 2 / 2 / 3;
}

.vge-3 {
    grid-area: 2 / 1 / 3 / 2;
}

.vge-4 {
    grid-area: 2 / 2 / 3 / 3;
}

.valeur-grid-element {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valeur-grid-element h3 {
    text-transform: uppercase;
    font-weight: bold;
}

.valeur-grid-element ul {
    list-style: disc;
    margin-left: 2rem;
}

.valeur-grid-element ul li {
    margin-top: .5rem;
}

.section-val-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-val-4 h2 {
    font-size: 2.5rem;
    text-align: center;
}

.section-val-4 p {
    text-align: center;
}

.section-val-4 .button {
    align-self: center;
}

@media screen and (max-width:1024px) {
    .section-val-2 ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

}

@media screen and (max-width:425px) {
    .section-val-2 ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }


    .section-val-3 .valeur-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .vge-1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .vge-2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .vge-3 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .vge-4 {
        grid-area: 4 / 1 / 5 / 2;
    }
}


/* -------------------------------------------------------------------------- */
/*                                   contact                                  */
/* -------------------------------------------------------------------------- */
.contact-h1 {
    margin-bottom: 5rem;
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.contact-container>div {
    width: 50%;
}

.wpforms-field {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpforms-field-label {
    display: none !important;
}

.contact-container input,
.contact-container textarea {
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'albert' !important;
}

#wpforms-submit-48 {
    background-color: var(--orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: .5rem;
    width: auto;
    align-self: flex-start;
    text-transform: uppercase;
    font-family: 'albert';
    font-weight: 400;
    line-height: 0;
    margin-top: 2rem;
}

#wpforms-submit-48:hover {
    background-color: #ff694f;
}

.contact-container-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-container-right p:first-child {
    font-weight: bold;
}


.ct-11 {
    width: 100%;
}

@media screen and (max-width:1024px) {
    .ct-11 {
        display: none;
    }
}

@media screen and (max-width : 768px) {

    .contact-container {
        flex-direction: column;
    }


    .contact-container>div {
        width: 100%;
    }
}

#berlin,
#prague,
#vienne,
#bratislava,
#budapest {
    scroll-margin-top: 2rem;
}