@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter-Light-NVLth-z.woff2") format('woff2');
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    color: #182939;
}

/* Boutons CTA globaux */
.btn-cta-primary {
    display: inline-block;
    background-color: #bc934b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-cta-primary:hover {
    background-color: #a67c38;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #182939;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    border: 2px solid #182939;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-cta-secondary:hover {
    background-color: #182939;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Nav */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease;
}

.site-nav.scrolled {
    background-color: #182939;
}

.site-nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.4s ease;
}

.site-nav.scrolled .site-nav-container {
    height: 64px;
}

/* Logo : couleurs d'origine au top, blanc sur fond sombre */
.site-nav-brand img {
    display: block;
    filter: none;
    transition: filter 0.4s ease, opacity 0.2s ease;
}

.site-nav.scrolled .site-nav-brand img {
    filter: brightness(0) invert(1);
}

.site-nav-brand:hover img {
    opacity: 0.8;
}

.site-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: gap 0.4s ease;
}

.site-nav.scrolled .site-nav-links {
    gap: 0.25rem;
}

.site-nav-links li a {
    color: #182939;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 4px;
    display: block;
    transition: color 0.4s ease, background-color 0.2s ease;
}

.site-nav.scrolled .site-nav-links li a {
    color: rgba(255, 255, 255, 0.85);
}

.site-nav-links li a:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.site-nav.scrolled .site-nav-links li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.site-nav-cta {
    background-color: #bc934b !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 0.45rem 1.1rem !important;
    transition: background-color 0.2s ease, transform 0.15s ease !important;
}

.site-nav-cta:hover {
    background-color: #a67c38 !important;
    transform: translateY(-1px);
}

/* Hamburger */
.site-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.site-nav-burger span {
    display: block;
    height: 2px;
    background-color: #182939;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, background-color 0.4s ease;
    transform-origin: center;
}

.site-nav.scrolled .site-nav-burger span {
    background-color: #ffffff;
}

.site-nav-burger span:nth-child(3) {
    width: 60%;
    margin-left: auto;
}

.site-nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-nav-burger.open span:nth-child(3) {
    width: 100%;
    transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.site-nav-mobile {
    background-color: #182939;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.site-nav-mobile.open {
    max-height: 320px;
}

.site-nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-nav-mobile ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.65rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.site-nav-mobile ul li a:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.site-nav-cta-mobile {
    background-color: #bc934b !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-top: 0.5rem;
    text-align: center;
}

.site-nav-cta-mobile:hover {
    background-color: #a67c38 !important;
}

@media (max-width: 768px) {
    .site-nav-links { display: none; }
    .site-nav-burger { display: flex; }
    .site-nav { background-color: #182939; }
    .site-nav-burger span { background-color: #ffffff; }
    .site-nav-brand img { filter: brightness(0) invert(1); }
}

.home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/home.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.home-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

/* About */
.about-section {
    background-color: #ffffff;
    padding-bottom: 5rem !important;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #182939;
}

.about-title-accent {
    color: #bc934b;
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: #bc934b;
    margin-top: 12px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #182939;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-text {
    font-size: 0.95rem;
    color: #3a4f63;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 1px 6px rgba(24, 41, 57, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 16px rgba(24, 41, 57, 0.09);
}

.about-value-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(188, 147, 75, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.about-value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #182939;
    margin: 0 0 0.5rem;
}

.about-value-card p {
    font-size: 0.88rem;
    color: #3a4f63;
    line-height: 1.5;
    margin: 0;
}

/* Services */
.services-section {
    background-color: #f8f6f2;
    padding-bottom: 5rem !important;
}

.services-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #182939;
}

.services-title-accent {
    color: #bc934b;
}

.services-divider {
    width: 60px;
    height: 3px;
    background-color: #bc934b;
    margin-top: 12px;
    margin-bottom: 0;
}

.services-subtitle {
    font-size: 0.95rem;
    color: #3a4f63;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 1px 6px rgba(24, 41, 57, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 16px rgba(24, 41, 57, 0.09);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(188, 147, 75, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #182939;
    margin: 0 0 1rem;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.service-card-list li {
    font-size: 0.88rem;
    color: #3a4f63;
    line-height: 1.45;
    padding-left: 1rem;
    position: relative;
}

.service-card-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #bc934b;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.services-note {
    text-align: center;
    font-size: 0.9rem;
    color: #3a4f63;
    margin: 0;
}

.services-note-link {
    color: #bc934b;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.services-note-link:hover {
    text-decoration: underline;
    color: #a67c38;
}

/* Contact */
.contact-section {
    background-color: #182939;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-title-accent {
    color: #bc934b;
}

.contact-divider {
    width: 60px;
    height: 3px;
    background-color: #bc934b;
    margin-top: 12px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bc934b;
    margin-bottom: 0.2rem;
}

.contact-info-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    display: block;
}

.contact-info-value:hover {
    color: #bc934b;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.required {
    color: #bc934b;
}

.contact-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
    appearance: none;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-input:focus {
    border-color: #bc934b;
    background-color: rgba(255, 255, 255, 0.12);
}

.contact-input option {
    background-color: #182939;
    color: #ffffff;
}

.contact-textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-submit {
    background-color: #bc934b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.contact-submit:hover {
    background-color: #a67c38;
    transform: translateY(-1px);
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-alert {
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-alert-success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.contact-alert-error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.contact-form ul.errors {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
    font-size: 0.8rem;
    color: #fca5a5;
}

/* Footer */
.site-footer {
    background-color: #0f1b26;
    color: rgba(255, 255, 255, 0.65);
}

.footer-main {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bc934b;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    overflow-wrap: anywhere;
}

.footer-links a:hover {
    color: #bc934b;
}

.footer-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.footer-bottom {
    padding: 1rem 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #bc934b;
}

/* Mentions légales */
.legal-page {
    min-height: 100vh;
    background-color: #f8f6f2;
}

.legal-header {
    background-color: #182939;
    padding: 3rem 0 2.5rem;
    margin-bottom: 3rem;
}

.legal-back {
    display: inline-block;
    color: #bc934b;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    transition: opacity 0.2s;
}

.legal-back:hover {
    opacity: 0.75;
    color: #bc934b;
}

.legal-header h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.legal-header h1 span {
    color: #bc934b;
}

.legal-content {
    padding-bottom: 4rem;
    max-width: 800px;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bc934b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e2d8;
}

.legal-section p {
    font-size: 0.92rem;
    color: #3a4f63;
    line-height: 1.8;
}

.legal-section a {
    color: #bc934b;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e8e2d8;
}

.legal-table th {
    color: #182939;
    font-weight: 600;
    width: 35%;
    background-color: rgba(24, 41, 57, 0.04);
}

.legal-table td {
    color: #3a4f63;
}

.legal-table a {
    color: #bc934b;
    text-decoration: none;
}

#logo-svg {
    margin: 0 auto;
    padding: 0 auto;
    max-width: 600px;
    top: 50px;
    filter: drop-shadow(0px 1px 1px rgba(60, 64, 67, 0.3)) drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.15));
    display: block;
}
