html, body {
overflow-x: hidden !important;
max-width: 100%;
}
body { padding-top: 0; }
#dg-header {
left: 0;
width: 100%;
z-index: 9999;
font-family: inherit;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
} body.home #dg-header {
position: fixed !important;
top: 0;
background-color: transparent !important;
box-shadow: none !important;
}
body.home #dg-header.scrolled {
background-color: #FAF5E5 !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} body:not(.home) #dg-header {
position: sticky !important;
top: 0;
background-color: #FAF5E5 !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} .dg-header-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
height: 100px;
display: flex;
align-items: center;
gap: 16px;
} .dg-logo {
display: flex;
align-items: center;
text-decoration: none;
flex-shrink: 0;
}
.dg-logo-img {
height: 70px !important;
width: auto;
transition: all 0.3s ease;
}
.dg-logo-name {
font-weight: 800;
font-size: 1.3rem;
color: #000;
letter-spacing: 0.5px;
}
.dg-logo-name span { color: #DDB406; } .dg-nav { flex: 1; display: flex; justify-content: center; }
.dg-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
gap: 4px;
}
.dg-item { position: relative; }
.dg-link {
display: flex;
align-items: center;
padding: 8px 14px;
text-decoration: none;
font-size: 0.9rem;
white-space: nowrap;
transition: color 0.3s ease;
}
.dg-link:hover { color: #DDB406 !important; font-weight: bold; } body.home #dg-header .dg-link { color: #fff; }
body.home #dg-header.scrolled .dg-link { color: #000 !important; } body:not(.home) #dg-header .dg-link { color: #000; } .dg-item.dg-active > .dg-link {
color: #DDB406 !important;
font-weight: bold;
} .dg-arrow {
font-size: 0.6rem;
margin-left: 4px;
display: inline-block;
transition: transform 0.25s ease;
}
.dg-has-dropdown:hover .dg-arrow { transform: rotate(180deg); } .dg-dropdown {
position: absolute;
top: 100%;
left: 0;
background-color: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 6px;
min-width: max-content;
width: auto;
z-index: 9999;
opacity: 0;
visibility: hidden;
transform: translateY(-5px);
transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
list-style: none;
margin: 0;
padding: 0;
}
.dg-has-dropdown:hover .dg-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dg-dropdown a {
color: #000 !important;
padding: 8px 16px !important;
display: block;
font-size: 0.85rem;
white-space: nowrap;
transition: all 0.3s ease;
}
.dg-dropdown a:hover {
color: #DDB406 !important;
font-weight: bold;
background-color: rgba(221, 180, 6, 0.1) !important;
transform: translateX(4px);
} .dg-actions {
display: flex;
align-items: center;
gap: 14px;
flex-shrink: 0;
margin-left: auto;
} .dg-phone {
display: inline-flex;
align-items: center;
gap: 6px;
text-decoration: none;
font-size: 0.85rem;
font-weight: 700;
white-space: nowrap;
}
body.home #dg-header .dg-phone { color: #fff; }
body.home #dg-header.scrolled .dg-phone { color: #000; }
body:not(.home) #dg-header .dg-phone { color: #000; }
.dg-phone:hover { color: #DDB406; } .dg-cta {
display: inline-flex;
align-items: center;
padding: 10px 20px;
background-color: #FFDF5EFA;
color: #000 !important;
text-decoration: none;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.4px;
border-radius: 6px;
white-space: nowrap;
transition: background-color 0.2s ease, transform 0.15s ease;
}
.dg-cta:hover { background-color: #DDB406; transform: translateY(-1px); } .dg-burger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
box-shadow: none;
outline: none;
cursor: pointer;
padding: 8px;
border-radius: 6px;
-webkit-tap-highlight-color: transparent;
}
.dg-burger span {
display: block;
width: 22px;
height: 2px;
border-radius: 2px;
transition: background 0.35s ease, transform 0.3s ease, opacity 0.3s ease;
}
.dg-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dg-burger.open span:nth-child(2) { opacity: 0; }
.dg-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } body.home .dg-burger { background-color: #fff !important; }
body.home .dg-burger span { background-color: #000 !important; }
body.home #dg-header.scrolled .dg-burger { background-color: #000 !important; }
body.home #dg-header.scrolled .dg-burger span { background-color: #fff !important; } body:not(.home) .dg-burger { background-color: #000 !important; }
body:not(.home) .dg-burger span { background-color: #fff !important; } @media (max-width: 1024px) {
.dg-phone-number { display: none; }
}
@media (max-width: 860px) {
.dg-burger { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; }
.dg-phone, .dg-cta { display: none !important; }
.dg-nav {
display: none;
position: fixed;
top: 90px;
left: 0;
right: 0;
background: #fff;
padding: 10px 0 24px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
max-height: calc(100vh - 90px);
overflow-y: auto;
z-index: 9998;
}
.dg-nav.open { display: block; }
.dg-menu { flex-direction: column; gap: 0; align-items: stretch; }
.dg-item { width: 100%; }
.dg-link {
color: #000 !important;
padding: 14px 24px;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
font-size: 0.9rem;
}
.dg-link:hover { background-color: rgba(221, 180, 6, 0.1); }
.dg-dropdown {
position: static;
display: none;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
border-radius: 0;
background: #FAF5E5;
min-width: auto;
width: 100%;
}
.dg-has-dropdown.dg-open .dg-dropdown { display: block; }
.dg-has-dropdown.dg-open .dg-arrow { transform: rotate(180deg); }
.dg-dropdown a {
padding: 12px 24px 12px 36px !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
}
@media (max-width: 480px) {
.dg-header-inner { padding: 0 16px; gap: 10px; }
.dg-logo-img { height: 56px !important; }
}.site-footer {
background: #1a1a1a !important;
font-family: inherit;
} .site-above-footer-wrap .ast-builder-grid-row {
align-items: start !important;
}
.site-above-footer-wrap .ast-builder-grid-row-container-inner {
padding: 56px 32px 36px;
max-width: 1280px;
margin: 0 auto;
}
.site-above-footer-wrap .site-footer-section,
.site-above-footer-wrap .footer-widget-area-inner {
padding: 0 !important;
} .site-footer p,
.site-footer li,
.site-footer a {
font-family: inherit !important;
} .site-footer-above-section-1 .wp-block-image,
.site-footer .decograph-footer-logo {
display: inline-block !important;
background: #ffffff !important;
border-radius: 10px !important;
padding: 10px 16px !important;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25) !important;
}
.site-footer-above-section-1 .wp-block-image img {
height: 70px !important;
width: auto !important;
display: block;
} .decograph-footer-title {
color: #DDB406 !important;
font-size: 0.85rem !important;
font-weight: 700 !important;
letter-spacing: 1.2px !important;
text-transform: uppercase !important;
margin: 0 0 16px 0 !important;
} .decograph-footer-address p {
color: rgba(255, 255, 255, 0.75) !important;
font-size: 0.88rem !important;
line-height: 1.7 !important;
margin: 0 !important;
}
.decograph-footer-address strong {
color: #ffffff !important;
} .decograph-footer-links ul {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
.decograph-footer-links li {
margin-bottom: 6px !important;
}
.decograph-footer-links a {
color: rgba(255, 255, 255, 0.85) !important;
text-decoration: none !important;
font-size: 0.88rem !important;
display: inline-block !important;
padding: 2px 0 !important;
transition: color 0.2s ease, padding-left 0.2s ease;
}
.decograph-footer-links a:hover {
color: #DDB406 !important;
padding-left: 4px !important;
} .decograph-footer-contact p {
color: rgba(255, 255, 255, 0.85) !important;
font-size: 0.88rem !important;
line-height: 1.8 !important;
margin: 0 0 6px 0 !important;
}
.decograph-footer-contact a {
color: rgba(255, 255, 255, 0.85) !important;
text-decoration: none !important;
transition: color 0.2s ease;
}
.decograph-footer-contact a:hover { color: #DDB406 !important; } .site-primary-footer-wrap {
background: #111111 !important;
border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.decograph-footer-bottom {
max-width: 1280px;
margin: 0 auto;
padding: 18px 32px;
display: flex !important;
flex-wrap: wrap !important;
justify-content: space-between !important;
align-items: center !important;
gap: 10px 24px;
color: rgba(255, 255, 255, 0.55) !important;
font-size: 0.78rem !important;
}
.decograph-footer-bottom p { margin: 0 !important; color: rgba(255, 255, 255, 0.55) !important; }
.decograph-footer-bottom a {
color: rgba(255, 255, 255, 0.55) !important;
text-decoration: none !important;
transition: color 0.2s ease;
}
.decograph-footer-bottom a:hover { color: #DDB406 !important; } @media (max-width: 768px) {
.site-above-footer-wrap .ast-builder-grid-row-container-inner {
padding: 36px 20px 24px;
}
.decograph-footer-bottom {
flex-direction: column !important;
text-align: center !important;
padding: 18px 20px !important;
}
}.formulaire-article.horizontal {
border: 2px solid #000000;
padding: 20px 30px;
background-color: #FAF5E5;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 800px;
margin: 40px auto;
display: flex;
flex-direction: column;
align-items: center;
}
.formulaire-article.horizontal h3 {
color: #DDB406;
margin-bottom: 20px;
font-size: 2.4em;
text-align: center;
}
.formulaire-article.horizontal .wpforms-container {
width: 100%;
}
.formulaire-article.horizontal .wpforms-submit {
background-color: #DDB406 !important;
color: #ffffff !important;
border: none !important;
padding: 10px 20px !important;
border-radius: 5px !important;
font-weight: bold !important;
cursor: pointer !important;
transition: background-color 0.2s ease;
}
.formulaire-article.horizontal .wpforms-submit:hover {
background-color: #b89104 !important;
}
@media screen and (max-width: 768px) {
.formulaire-article.horizontal {
padding: 15px 20px;
max-width: 100%;
}
.formulaire-article.horizontal h3 {
font-size: 1.8em;
}
}.single-post .posted-on,
.single-post .posted-on .published {
display: none !important;
} .single-post .post-navigation {
display: none !important;
} .ast-single-related-posts-container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding: 20px 24px 60px;
box-sizing: border-box;
overflow-x: hidden;
}
.ast-related-posts-title-section {
text-align: center;
margin-bottom: 32px;
}
.ast-related-posts-title {
color: #000;
font-weight: 800;
position: relative;
display: inline-block;
margin: 0;
padding-bottom: 14px;
}
.ast-related-posts-title::after {
content: '';
display: block;
width: 60px;
height: 3px;
background: #DDB406;
border-radius: 2px;
margin: 12px auto 0;
}
.ast-related-posts-wrapper {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 24px !important;
width: 100%;
}
.ast-related-post {
background: #FAF5E5;
border: 1px solid transparent;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 30px rgba(0, 0, 0, 0.28);
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
min-width: 0;
max-width: 100%;
}
.ast-related-post:hover {
transform: translateY(-4px);
border-color: #DDB406;
box-shadow: 0 4px 12px rgba(221, 180, 6, 0.5);
}
.ast-related-posts-inner-section,
.ast-related-post-content {
display: flex;
flex-direction: column;
height: 100%;
}
.ast-related-post-featured-section {
flex-shrink: 0;
}
.ast-related-post-featured-section .post-thumb-img-content {
aspect-ratio: 4 / 3;
overflow: hidden;
}
.ast-related-post-featured-section img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}
.ast-related-post:hover .ast-related-post-featured-section img {
transform: scale(1.05);
}
.related-entry-header {
padding: 22px 22px 8px;
}
.ast-related-post-title.entry-title {
margin: 0;
font-size: 1.25rem;
font-weight: 700;
line-height: 1.4;
}
.ast-related-post-title.entry-title a {
color: #8d651c !important;
text-decoration: none !important;
transition: color 0.2s ease;
}
.ast-related-post-title.entry-title a:hover {
color: #DDB406 !important;
}
.ast-related-post .entry-meta {
display: none !important;
}
.ast-related-post .entry-content.clear {
padding: 0 22px 26px;
display: flex;
flex-direction: column;
flex: 1;
}
.ast-related-post-excerpt {
color: #555;
font-size: 0.9rem;
line-height: 1.65;
margin: 0 0 20px !important;
flex: 1;
}
.ast-related-post-cta.read-more {
margin: 0 !important;
}
.ast-related-post-link {
display: inline-flex;
align-items: center;
padding: 10px 20px;
background-color: #DDB406;
color: #ffffff !important;
text-decoration: none !important;
font-size: 0.875rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.4px;
border-radius: 30px;
transition: background-color 0.2s ease;
}
.ast-related-post-link::after {
content: "Découvrir";
}
.ast-related-post-link:hover {
background-color: #c9a405;
}
@media (max-width: 900px) {
.ast-related-posts-wrapper {
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
}
@media (max-width: 600px) {
.ast-related-posts-wrapper {
grid-template-columns: minmax(0, 1fr) !important;
}
.ast-related-post-featured-section .post-thumb-img-content {
width: 100%;
}
}
.ast-related-post-featured-section img {
max-width: 100%;
}.mobile-bottom-bar {
display: none; position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 60px;
z-index: 99999;
background-color: #DDB406;
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
flex-direction: row;
}
.mbb-btn {
flex: 1;
text-align: center;
padding: 15px 5px;
color: #000;
font-size: 15px;
font-weight: 600;
text-decoration: none;
border-right: 1px solid rgba(0, 0, 0, 0.2);
line-height: 30px;
}
.mbb-btn:last-child { border-right: none; }
.mbb-btn:active { background-color: #c9aa00; } @media screen and (max-width: 1024px) {
.mobile-bottom-bar { display: flex; } body, html { padding-bottom: 60px; } #ast-scroll-top {
bottom: 75px !important;
right: 20px !important;
z-index: 100000;
}
}