/*
Theme Name:   Flaujac WP Theme
Author:       Digeek
Author URI:   https://digeek.fr/
Description:  Studio Roseraie WP Theme!
Version:      0.0.1
*/

/*
* GENERAL
*/




:root {
    /* Couleurs */
    --main-purple: #772AD1;
    --main-blue: #1F68F4;
    --main-orange: #FFA614;
    --bg-section: #F4F4F4;

    --main-text-black: #000;
    --main-text-white: #fff;

    /* Fonts size */
    --main-title: 50px;
    --second-title: calc(var(--main-title) * 0.71);
    --third-title: calc(var(--main-title) * 0.5);
    --link-header: calc(var(--main-title) * 0.29);
    --link-section: calc(var(--main-title) * 0.21);
    --paragraph-section: calc(var(--main-title) * 0.26);
    --inner-text-section: calc(var(--main-title) * 0.23);
}

@media (max-width: 768px) {
    :root {
        --main-title: 40px;
    }
}

/* Génral style */
body {
    font-family: 'MADE Outer Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

p a {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

h1 {
    font-weight: bold;
    font-size: var(--main-title);
    color: var(--main-text-white);
    text-transform: uppercase;
}

h2 {
    font-weight: bold;
    font-size: var(--second-title);
    color: var(--main-text-black);
    text-transform: uppercase;
    margin-bottom: 30px;
}

h3 {
    font-weight: bold;
    font-size: var(--third-title);
    color: var(--main-text-black);
    text-transform: uppercase;
    margin: 0;
    margin-top: 10px;
}

main {
    margin-top: 60px;
}

section {
    margin-bottom: 80px;
}

p, .wpcf-field-wysiwyg {
    font-weight: 300;
    font-size: var(--paragraph-section);
    color: var(--main-text-black);
    line-height: 2;
}

strong {
    font-weight: bold;
}

.path-purple {
    fill: var(--main-purple);
}

.path-blue {
    fill: var(--main-blue);
}

.path-orange {
    fill: var(--main-orange);
}

div.anchor {
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
}

/* Général pour la homepage */
.link-section {
    margin-top: 30px;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.link-section a {
    font-weight: normal;
    font-size: var(--link-section);
    color: var(--main-text-black);
    text-transform: uppercase;
    padding-right: 50px;
}

.en-savoir-plus:hover + .arrow-icon {
    right: -10px;
}

.arrow-icon:hover {
    right: -10px;
}

.arrow-icon {
    height: 25px;
    display: inline-block;
    transition: right 0.3s ease-out;
    position: absolute;
    right: 0;
    cursor: pointer;
}

/* Navbar */
nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    z-index: 100;
    transition: all 0.5s ease-in-out;
}

nav.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000!important;
}

@media (max-width: 768px) {
    nav {
        padding: 30px 40px;
    }
}

.branding-header {
    display: flex;
    align-items: center;
    z-index: 25;
}

@media (max-width: 1200px) {
    .branding-header {
        display: block;
    }
}

.branding-header img {
    height: 50px;
    width: auto;
}

.nav-text {
    font-weight: 300;
    font-size: var(--link-header);
    color: var(--main-text-white);
    margin-left: 100px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .nav-text {
        margin-left: 0;
        margin-top: 10px;
    }
}

.menu-navigation {
    display: flex;
    color: var(--main-text-white);
}

.puce-menu {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.puce-menu:last-child {
    display: none;
}

.menu-navigation li a {
    font-weight: 300;
    font-size: var(--link-header);
    color: var(--main-text-white);
    padding: 5px 0;
}

.menu-navigation li a:hover, .menu-navigation li a[aria-current] {
    border-bottom: solid 2px #fff;
}

/* Menu burger animation */
#menu-burger {
    width: 40px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
    z-index: 25;
  }
  
  #menu-burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

#menu-burger span:nth-child(1) {
    top: 0px;
  }
  
  #menu-burger span:nth-child(2),#menu-burger span:nth-child(3) {
    top: 14px;
  }
  
  #menu-burger span:nth-child(4) {
    top: 28px;
  }
  
  #menu-burger.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
  }
  
  #menu-burger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #menu-burger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #menu-burger.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
  }

@media (max-width: 1015px) {
    /* Menu responsive */
    #menu-burger {
        display: block;
    }

    .bg-mobile-navbar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: transparent;
        z-index: 10;
    }

    .menu-navigation {
        display: none;
        flex-direction: column;
        background: var(--main-text-black);
        position: absolute;
        top: -300%;
        left: 0;
        width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .menu-active {
        display: flex;
    }

    .menu-navigation li {
        margin: 20px 0;
    }

    .puce-menu {
        display: none;
    }
}

/* Homepage header */
.homepage-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content .header-content-container {
    max-width: 50%;
    text-align: center;
}

@media (max-width: 1150px) {
    .header-content .header-content-container {
        max-width: 75%;
    }
}

@media (max-width: 768px) {
    .header-content .header-content-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

#video-a-la-une {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%; 
    height: 100vh;
}

.header-content .header-content-container .header-content-container-slider-item {
    padding: 20px 0;
    text-align: center;
    color: var(--main-text-white);
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

@media (max-width: 768px) {
    .header-content .header-content-container .header-content-container-slider-item {
        height: 130px;
    }
}

@media (max-width: 500px) {
    .header-content .header-content-container .header-content-container-slider-item {
        height: 200px;
    }
}

.header-content .header-content-container .header-content-container-slider-item-1 {
    background-color: var(--main-blue);
}

.header-content .header-content-container .header-content-container-slider-item-2 {
    background-color: var(--main-purple);
}

.header-content .header-content-container .header-content-container-slider-item-3 {
    background-color: var(--main-orange);
}

.header-content .header-content-container .header-content-container-slider-item .header-content-container-slider-item-title {
    font-size: var(--main-title);
    font-weight: 500;
    overflow: hidden;
    display: block;
    width: 100%;
}

.header-content .header-content-container .header-content-container-slider-item .header-content-container-slider-item-subtitle {
    font-size: calc(var(--main-title) * 0.43);
    font-weight: 100;
    overflow: hidden;
    display: block;
    width: 100%;
}

.homepage-header-relative {
    height: 100vh;
}

/* Description section */
.homepage-content .description-section p {
    padding-right: 25%;
}

@media (max-width: 768px) {
    .homepage-content .description-section p {
        padding-right: 0;
    }
}

/* Régie section */
.regie-section .regie-section-container .regie-section-container-left {
    position: relative;
}

@media (max-width: 992px) {
    .regie-section .regie-section-container .regie-section-container-left {
        padding: 0;
    }
}

.regie-section .regie-section-container .regie-section-container-left:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-image: url("../images/icons/icon-studio-roseraie.svg");
    background-repeat: no-repeat;
    background-position: right 0px;
    position: absolute;
    right: -100px;
    top: -120px;
    z-index: 25;
}

.regie-section .regie-section-container {
    display: flex;
}

.regie-section .regie-section-container .regie-section-container-left img {
    object-fit: cover;
    width: 100%;
    max-height: 500px;
    position: relative;
    z-index: 50;
}

@media (max-width: 992px) {
    .regie-section {
        padding: 0 16px;
    }

    .regie-section .regie-section-container .regie-section-container-right {
        margin-top: 30px;
        padding-right: 0;
    }

    .regie-section .regie-section-container .regie-section-container-left:after {
        right: 0;
        display: none;
    }

    .regie-section .regie-section-container {
        flex-direction: column;
    }
}

/* Prestation section */
.prestation-section {
    position: relative;
}

.prestation-section:after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 200px;
    opacity: 0.5;
    background-image: url("../images/icons/bg-icon-red-crop.png");
    background-repeat: no-repeat;
    background-size: 200px;
    position: absolute;
    right: 0;
    z-index: 20;
}

.prestation-section .prestation-section-container p {
    width: 66%;
}

.prestation-section .prestation-section-container .prestation-section-container-item {
    padding: 0 10px;
}

.prestation-section-container-item-link:hover .prestation-section-container-item-content-img {
    transform: rotate(180deg);
}

.prestation-section .prestation-section-container .prestation-section-container-item .prestation-section-container-item-content {
    display: flex;
    background: var(--main-text-black);
    padding: 20px 10px;
    height: 100%;
}

.prestation-section .prestation-section-container .prestation-section-container-item svg {
    width: 75px;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.prestation-section .prestation-section-container .prestation-section-container-item .prestation-section-container-item-content .prestation-section-container-item-content-title {
    margin-left: 10px;
    font-weight: bold;
    font-size: var(--third-title);
    color: var(--main-text-white);
    text-transform: uppercase;
}

.prestation-section .prestation-section-container .prestation-section-container-item {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .prestation-section .prestation-section-container p {
        width: 100%;
    }
    
    .prestation-section .prestation-section-container .prestation-section-container-item {
        margin: 10px 0;
    }
}

.prestation-section .link-section {
    margin-top: 0;
}

/* Equipe section */
.team-section {
    background-color: var(--bg-section);
    margin-bottom: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-image: url("../images/icons/bg-icon-purple.png"), url("../images/icons/bg-icon-orange.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 100px, 50px;
    background-position: left -50px bottom 0px, left 40px bottom 100px;
}

.team-section .link-section {
    margin-top: 0;
}

#wpcf-field-team-description {
    margin-bottom: 20px;
}

.team-section .team-section-item {
    padding: 0 10px;
    z-index: 30;
}

.team-section .team-section-item .team-section-item-content{
    padding: 20px;
    border: solid 1px #000;
    height: 100%;
    background-color: var(--bg-section);
    transition: all 0.2s ease-in-out;
}

.team-section .team-section-item .team-section-item-content img {
    width: 100%;
    height: auto;
}

.team-section .team-section-item .team-section-item-content .team-section-item-content-category {
    font-weight: normal;
    font-size: var(--paragraph-section);
    color: var(--main-text-black);
    margin-top: 10px;
}

.team-section .team-section-item {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .team-section .team-section-item {
        margin: 10px 0;
    }
}

.team-section-item-link:hover .team-section-item-content {
    /* padding: 15px!important; */
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--main-text-black);
    padding: 30px 40px;
    font-weight: 300;
    font-size: var(--paragraph-section);
    color: var(--main-text-white);
}

.footer-logo {
    width: 120px;
    height: auto;
}

footer a {
    color: var(--main-text-white);
}

footer p {
    line-height: 1.5;
    color: var(--main-text-white);
}

.copyrights {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .col-md-2 {
        margin-top: 20px;
    }
}

footer h6 {
    font-weight: normal;
    font-size: var(--paragraph-section);
}

.social-network-links svg {
    fill: black!important;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
    background-color: white;
}

.wp-block-social-link-anchor {
    font-size: 20px;
}