/* CSS Global */

/* Main */

html, body {
    height:100%;
    font-family: 'Comfortaa', cursive;
    background-color: #F0E8DE;
} 

body, * {
    margin: 0;
    padding: 0;
}

/* Header part - Main */

header {
    margin-top: 0;
    margin-bottom: 5vh;
}

.header-container {
    background-image: url("../assets/header_background_wave.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 52vw;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Header part - Nav */

.menu-img {
    height: 5vw;
    width: 7.5vw;
}

.navbar {
    align-self: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-top: 2.5vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4vw;
    padding-right: 0;
}

/* "Des Fleurs..." */
.nav-menu .menu-item-358 {
    padding-right: 6.5vw;
}

/* "Notre Boutique" */
.nav-menu .menu-item-360 {
    padding-right: 10vw;
}

/* "À propos de nous" */
.nav-menu .menu-item-361 {
    padding-left: 8vw;
}

/* "Contactez-nous" */
.nav-menu .menu-item-362 {
    padding-left: 3vw;
}
  
.nav-menu li {
    display: inline-block;
}
  
.nav-menu li a {
    position: relative;
    display: block;
    text-decoration: none;
    color: snow;
}

.nav-menu li:not(.menu-item-363) a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: snow;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-menu li:not(.menu-item-363) a:hover::after {
    width: 100%;
}

.nav-toggle {
    position: absolute;
    top: 5vw;
    right: 5vw;
    display: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: snow;
    margin-bottom: 2px;
    border-radius: 25px;
    transition: all 275ms ease;
}

.nav-toggle.active .bar1 {
    transform: rotate(45deg) translate(0, 7px);
}

.nav-toggle.active .bar2 {
    opacity: 0;
}

.nav-toggle.active .bar3 {
    transform: rotate(-45deg) translate(0, -7px);
}

/* Mobile menu */

.mobile-menu {
    position: relative;
}
  
.dropdown-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    max-width: 300px;
    height: 50%;
    background-color: transparent;
    padding: 20px;
    transform: translateY(-150vw);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
}
  
.dropdown-menu.open {
    transform: translateX(0);
}

.dropdown-menu li {
    list-style-type: none;
    margin: 4vw;
    text-align: center;
}

.dropdown-menu li a {
    position: relative;
    font-family: 'Comfortaa', cursive;
    text-decoration: none;
    font-weight: bold;
    color: snow;
}

.dropdown-menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: snow;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    transform: translateX(-50%);
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    display: none;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(2px);
}

.dropdown-overlay.open {
    display: block;
}

.dropdown-menu li a:hover::after {
    width: 100%;
}
  
.nav-toggle.active + .dropdown-menu {
    display: block;
    
}

/* Responsive menu */

@media only screen and (max-width: 768px) {
    .navbar {
      display: flex;
      flex-direction: column;
    }
    
    .nav-menu {
      display: none;
    }
    
    .nav-menu.open {
      display: block;
    }
    
    .nav-toggle {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
}

/* Header part - Title */

.header-title {
    font-size: 9vw;
    color: snow;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9vw;
}

/* Header part - Sub */

.header-sub {
    font-size: 2.2vw;
    color: snow;
    margin-left: auto;
    margin-right: auto;
}

/* Header part - Desc */

.header-desc {
    font-size: 1.4vw;
    font-style: italic;
    color: snow;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6vw;
}

/* Section 1 part - Main */

.section1 {
    position: relative;
    height: 45vw;
    color:#523913;
}

/* Section 1 part - Background */

.section1-bg {
    position: absolute;
    background-image: url("../assets/section1_bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.10;
    left: 17.5%;
    top: 0;
    height: 38vw;
    width: 65vw;
    z-index: 1;
}

/* Section 1 part - Content */

.section1-content {
    display: flex;
    flex-direction: column;
}

/* Section 1 part - Titre */

.section1-title {
    align-self: center;
    text-align: center;
    font-size: 1.7vw;
    margin-bottom: 4vw;
    margin-top: 5vw;
    z-index: 2;
}

/* Section 1 part - Description */

.section1-desc {
    display: flex;
    justify-content: center;
    text-align: left;
    line-height: 1.2;
    font-size: 1.4vw;
    margin-left: 15vw;
    margin-right: 15vw;
    z-index: 2;
}

.section1-desc-left {
    margin-right: 2vw;
}

.section1-desc-right {
    margin-left: 2vw;
}

/* Section 1 part - Bouton(Lien) */

.section1-link {
    align-self: center;
    margin-top: 5vw;
    z-index: 2;
}

.section1-link a {
    position: absolute;
    left: 42.5%;
    font-size: 1.2vw;
    border: 0.1vw solid #523913;
    border-radius: 25px;
    padding: 1vw 2vw 1vw 2vw;
    text-decoration: none;
    color:#523913;
    display: flex;
    align-items: center;
    transition-duration: 150ms;
}

.section1-link a:hover {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */

/* Section 2 part - Main */

.section2 {
    position: relative;
    height: 60vw;
    color:#523913;
}

/* Section 2 part - Content */

.section2-content {
    display: flex;
    flex-direction: column;
}

/* Section 2 part - Titre */
.section2-title {
    align-self: center;
    text-align: center;
    font-size: 1.2vw;
    margin-bottom: 2vw;
}

/* Section 2 part - Catalog */

.section2-catalog {
    display: flex;
    justify-content: center;
}

.section2-catalog-item {
    text-align: center;
    margin-right: 0.5vw;
    margin-left: 0.5vw;
}

/* Section 2 part - Item title */

.section2-catalog-title {
    margin-top: 1vw;
    font-size: 1.4vw;
}

/* Section 2 part - Item link */

.section2-catalog-link {
    margin-top: 1vw;
    font-size: 1.1vw;
}

.section2-catalog-link a {
    position: relative;
    text-decoration: none;
    color: #523913;
}

.section2-catalog-link a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #523913;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    transform: translateX(-50%);
}

.section2-catalog-link a:hover::after {
    width: 100%;
}

/* Section 2 part - Catalog img */

.section2-catalog-img {
    height: 35vw;
    width: 23.3vw;
}

/* Section 2 part - Bouton(lien) */

.section2-link {
    align-self: center;
    margin-top: 3vw;
    z-index: 2;
}

.section2-link a {
    position: absolute;
    left: 40.5%;
    font-size: 1.2vw;
    border: 1px solid #523913;
    border-radius: 25px;
    padding: 1vw 3vw 1vw 3vw;
    text-decoration: none;
    color:#523913;
    display: flex;
    align-items: center;
    transition-duration: 150ms;
}

.section2-link a:hover {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */

/* Section 3 part - Main */

.section3 {
    position: relative;
    height: 38vw;
    color:snow;
}

/* Section 3 part - Background */

.section3-bg {
    position: absolute;
    background-image: url("../assets/section3_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.4);
    top: 0;
    height: 40vw;
    width: 100%;
    z-index: 1;
}

/* Section 3 part - Content */

.section3-content {
    display: flex;
    flex-direction: column;
}

/* Section 3 part - Titre */

.section3-title {
    align-self: center;
    text-align: center;
    font-size: 1.9vw;
    margin-bottom: 3vw;
    margin-top: 8vw;
    z-index: 2;
}

/* Section 3 part - Description */

.section3-desc {
    display: flex;
    justify-content: center;
    text-align: left;
    line-height: 1.2;
    font-size: 3vw;
    margin-left: 15vw;
    margin-right: 15vw;
    font-weight: bold;
    z-index: 2;
}

.section3-desc2 {
    margin-top: 1.7vw;
    align-self: center;
    text-align: center;
    font-size: 1.7vw;
    z-index: 2;
}

/* Section 3 part - Bouton(Lien) */

.section3-link {
    align-self: center;
    margin-top: 3vw;
    z-index: 2;
}

.section3-link a {
    position: absolute;
    left: 41.5%;
    font-size: 1.2vw;
    border: 1px solid snow;
    border-radius: 25px;
    padding: 1vw 3vw 1vw 3vw;
    text-decoration: none;
    color:snow;
    display: flex;
    align-items: center;
    transition-duration: 150ms;
}

.section3-link a:hover {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */

/* Section 4 part - Main */
.section4 {
    position: relative;
    height: 45vw;
    color:#523913;
}

/* Section 4 part - Content */

.section4-content {
    display: flex;
    flex-direction: column;
}

/* Section 4 part - Titre */

.section4-title {
    align-self: center;
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 3vw;
    margin-top: 9vw;
    z-index: 2;
}

/* Section 4 part - Description */

.section4-desc {
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-size: 1.9vw;
    margin-left: 15vw;
    margin-right: 15vw;
    z-index: 2;
}

.section4-desc2 {
    line-height: 1.2;
    margin-left: 15vw;
    margin-top: 1.5vw;
    font-size: 1.7vw;
    z-index: 2;
}

/* Section 4 part - Bouton(Lien) */

.section4-link {
    align-self: center;
    margin-top: 3vw;
    z-index: 2;
}

.section4-link a {
    position: absolute;
    left: 42%;
    font-size: 1.2vw;
    border: 1px solid #523913;
    border-radius: 25px;
    padding: 1vw 3vw 1vw 3vw;
    text-decoration: none;
    color:#523913;
    display: flex;
    align-items: center;
    transition-duration: 150ms;
}

.section4-link a:hover {
    transform: scale(1.05);
}

/* Footer part - Main */

.footer-container {
    background-color: #E1D3C3;
    display: flex;
    flex-direction: column;
    position: relative;
}

.image-footer-left {
    position: absolute;
    background-image: url('../assets/footer_image.png');
    background-size: cover;
    opacity: 0.25;
    height: 30vw;
    width: 50vw;
    left: -27vw;
    z-index: 1;
}

.image-footer-right {
    position: absolute;
    background-image: url('../assets/footer_image.png');
    background-size: cover;
    opacity: 0.25;
    height: 30vw;
    width: 27vw;
    right: 0;
    z-index: 1;
}

/* Footer part - Table */

.table-footer {
    align-self: center;
    color:#523913;
    margin-top: 7vw;
    margin-bottom: 6vw;
    z-index: 2;
}

.table-footer table {
    border-spacing: 3.5vw 0;
}

.table-footer table th {
    font-size: 1.4vw;
    text-align: left;
    padding-bottom: 15px;
}

.table-footer table td {
    font-size: 1vw;
    text-align: left;
    padding-bottom: 7.5px;
}

/* Footer part - Social */

.footer-social {
    align-self: center;
    font-size: 1.4vw;
    font-weight: bold;
    color:#523913;
    margin-bottom: 1vw;
}

.footer-social-link {
    font-size: 1vw;
    margin-bottom: 7vw;
}

.footer-social-link img {
    height: 1.2vw;
    width: 1.2vw;
    padding-right: 8px;
}

.footer-social-link a {
    position: absolute;
    left: 45%;
    right: 45%;
    text-decoration: none;
    color:#523913;
    display: flex;
    align-items: center;
    transition-duration: 150ms;
}

.footer-social-link a:hover {
    transform: scale(1.2);
}

/* Footer part - Line */

.footer-line hr {
    color: #5c4f3d;
    background-color: #5c4f3d;
    border: none;
    height: 1px;
    margin-bottom: 2vw;
}

/* Footer part - End */

.footer-end {
    color:#523913;
    font-size: 1.2vw;
    display: flex;
    justify-content: space-around;
    margin-bottom: 2vw;
}

