/*
Theme Name: Custom Black Gold Theme
Author: Julien Dauphin
Author URI: https://juliendauphin.fr
Description: Thème Artcam
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-black-gold
*/

body { margin:0; font-family:Arial; }

header {
    position: fixed;
    width: 100%;
    padding:20px;
    transition:0.3s;
    background:transparent;
    box-sizing: border-box;
    z-index: 3;
}

.logo img, .footer-top img {
    height: 100px;
    width: auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

header.scrolled { background: var(--primary); }

.nav-menu { display:flex; gap:20px; }

.menu {
    display:flex;
    gap:20px;
    list-style:none;
    margin:0;
    padding:0;
}

footer .menu a, header .menu a:hover{
    color : #caa24a;
    text-decoration:none;
}

header .menu a, footer .menu a:hover, .mobile-menu.active a {
    color:white;
    text-decoration:none;
}

header .current-menu-item a, .mobile-menu.active a:hover {
    color: #caa24a !important;
}

.burger { display:none; cursor:pointer; z-index: 3; }
.burger span {
    display:block;
    width:25px;
    height:3px;
    background:white;
    margin:5px 0;
    transition:0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.burger.active span:nth-child(2) { opacity:0; }
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

.mobile-menu {
    position:fixed;
    left:-125%;
    top:0;
    width:100%;
    height:100%;
    background:var(--primary);
    transition:0.3s;
    z-index: 2;
}
.mobile-menu.active { 
    left:0;
 }

.mobile-menu.active ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
 }

 #mobileMenu .menu-principal-container{
    height: 100vh;
 }

.overlay {
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    opacity:0;
    pointer-events:none;
}
.overlay.active {
    opacity:1;
    pointer-events:all;
}

footer {
    background:var(--primary);
    color:white;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}
.footer-bottom{ 
    display:flex;
    justify-content:space-between;
    min-height: 100px;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    gap : 10px;
    padding : 10px 0;
 }

.footer-top {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    gap : 10px;
    min-height: 100px;
    padding : 25px 0;
}

.footer-top > div {
    min-width: 250px;
    text-align: center;
}

.footer-middle {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    flex-direction: column;
    display:flex;
    min-height: 100px;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap : 10px;
    padding : 25px 0;
}

@media (max-width: 768px) {
    .footer-bottom, .footer-middle, .footer-top{
    flex-direction: column;
    justify-content: center;
     gap : 5px;
  }
  .logo img {
    height: 70px;
}
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
    .nav-menu { display:none; }
    .burger { display:block; z-index: 3; }
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    font-size: 20px;
    color: #C9A24A;
    transition: 0.3s;
}

.socials a:hover {
    color: white;
    transform: translateY(2px);
}

.forminator-label {
    color: white;
}

#forminator-module-185 .forminator-row .forminator-button-submit{
    border: 1px solid #C9A24A;
}