/* Init */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.poppins-regular {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

.poppins-medium {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.poppins-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.text-color {
    color: #EEEEF0 !important;
}

.social-icon {
    font-size: 24px;
    color: #000000;
}


/* Header */
#navbarNav{
    margin-left: -90px;
}

.nav-link {
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
}

.navbar {
    width: 100%;
    transition: background-color 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
    border-bottom: 1px solid transparent;
}

.navbar > .container-fluid {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.navbar-toggler {
    width: 46px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 162, 127, 0.55);
    border-radius: 50%;
    background-color: rgba(17, 17, 19, 0.7);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(217, 162, 127, 0.2);
}

.navbar-toggler-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #EEEEF0;
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.3s ease;
    background-size: 0;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #EEEEF0;
    border-radius: 999px;
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.2s ease;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
    transform: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    background-color: #d9a27f;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}

.navbar.scrolled {
    background-color: rgba(17, 17, 19, 0.92) !important;
    border-bottom-color: rgba(217, 162, 127, 0.22);
    backdrop-filter: blur(12px);
}

.active {
    background-color: transparent;
    color: #000000;
    border-radius: 20px;
}

#navbarNav .navbar-nav .nav-link.active {
    color: #000000 !important;
}

.navbar-nav {
    position: relative;
}

.nav-active-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    pointer-events: none;
}

.nav-active-indicator.is-ready {
    transition: transform 0.3s ease, width 0.3s ease;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    color: #EEEEF0;
    background: linear-gradient(180deg, #171314 0%, #0d0d0f 100%);
    border-top: 2px solid #986246;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.24);
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -170px;
    bottom: -290px;
    border: 1px solid rgba(217, 162, 127, 0.2);
    border-radius: 50%;
}

.site-footer::after {
    content: "";
    position: absolute;
    top: -2px;
    left: max(24px, calc((100% - 1650px) / 2));
    width: 110px;
    height: 2px;
    background-color: #EEEEF0;
}

.site-footer-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1650px);
    margin: 0 auto;
    padding: 76px 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 72px;
}

.footer-brand,
.footer-contact {
    max-width: 430px;
}

.footer-kicker {
    display: block;
    color: #d9a27f;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.footer-brand h2 {
    margin: 14px 0 14px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
}

.footer-brand h2 span {
    color: #d9a27f;
    font-weight: 400;
}

.footer-brand p {
    max-width: 340px;
    margin: 0;
    color: #a9a9ad;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #EEEEF0;
    border: 1px solid #514037;
    border-radius: 50%;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
    color: #111113;
    background-color: #d9a27f;
    border-color: #d9a27f;
}

.footer-contact {
    align-self: flex-end;
    padding-left: 32px;
    border-left: 1px solid #514037;
}

.footer-email,
.footer-phone {
    display: block;
    width: fit-content;
    text-decoration: none;
}

.footer-email {
    margin-top: 18px;
    color: #EEEEF0;
    font-size: clamp(20px, 2.5vw, 32px);
}

.footer-phone {
    margin-top: 12px;
    color: #a9a9ad;
    font-size: 14px;
}

.footer-email:hover,
.footer-email:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
    color: #d9a27f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    color: #77777d;
    border-top: 1px solid #302a27;
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a9a9ad;
    text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    color: #d9a27f;
}

@media (max-width: 576px) {
    .site-footer-inner {
        width: min(100% - 48px, 1650px);
        padding-top: 56px;
    }

    .footer-main {
        display: grid;
        gap: 48px;
        padding-bottom: 52px;
    }

    .footer-contact {
        align-self: auto;
        padding: 24px 0 0;
        border-top: 1px solid #514037;
        border-left: 0;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
    }

    .footer-bottom-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}


/* All */
.accueil, .galerie, .tarif, .contact, .mentions-legales {
    /*background-color: #111113;*/
    background: linear-gradient(#311E15, #111113 45%);
    min-height: 100vh;
}

.accueil-page, .galerie-page, .tarif-page, .contact-page, .legal-page {
    padding-top: 90px;
    max-width: 1650px;
    margin: 0 auto;
}

.btn-white {
    background-color: #EEEEF0;
    color: #111113;
    border-radius: 100px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-white:hover {
    background-color: #111113;
    color: #EEEEF0;
    border: 1px solid #EEEEF0;
}

.btn-bronze {
    background-color: #986246;
    color: #EEEEF0;
    border-radius: 100px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-bronze:hover {
    background-color: #EEEEF0;
    color: #986246;
    border: 1px solid #986246;
}


/* Accueil */
.accueil-content {
    position: relative;
    z-index: 1;
}

.accueil-title {
    font-size: clamp(48px, 8vw, 112px);
    line-height: 0.95;
    letter-spacing: -2px;
    text-shadow: 2px 4px 4px rgba(255, 255, 255, 0.25);
}

.accueil-subtitle {
    max-width: 620px;
    line-height: 1.7;
}

.accueil-page {
    position: relative;
    overflow: hidden;
}

.accueil-page::before {
    content: "";
    position: absolute;
    width: min(48vw, 720px);
    height: min(48vw, 720px);
    right: -16vw;
    top: 8%;
    border: 1px solid rgba(217, 162, 127, 0.2);
    border-radius: 50%;
}

.accueil-highlights {
    max-width: 460px;
    border-top: 1px solid rgba(238, 238, 240, 0.2);
}

.accueil-visual {
    position: relative;
    max-width: 620px;
    margin-left: auto;
    min-height: clamp(420px, 62vh, 680px);
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #1d1715;
    border: 1px solid rgba(217, 162, 127, 0.4);
    overflow: hidden;
}

.accueil-visual::before {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(238, 238, 240, 0.12);
    pointer-events: none;
}

.accueil-visual::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    background: repeating-linear-gradient(135deg, transparent 0, transparent 42px, rgba(217, 162, 127, 0.06) 43px, transparent 44px);
    pointer-events: none;
}

.accueil-visual-index,
.accueil-visual-footer,
.accueil-visual-corner,
.accueil-visual-center {
    position: relative;
    z-index: 1;
}

.accueil-visual-index {
    align-self: flex-end;
    color: #d9a27f;
    font-size: 12px;
    letter-spacing: 2px;
}

.accueil-visual-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 35px;
}

.accueil-logo {
    width: min(100%, 390px);
    max-height: 290px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.accueil-visual:hover .accueil-logo {
    transform: scale(1.04);
}

.accueil-visual-corner {
    width: 42px;
    height: 42px;
}

.accueil-visual-corner-top {
    border-top: 1px solid #d9a27f;
    border-left: 1px solid #d9a27f;
}

.accueil-visual-corner-bottom {
    align-self: flex-end;
    border-right: 1px solid #d9a27f;
    border-bottom: 1px solid #d9a27f;
}

.accueil-visual-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(238, 238, 240, 0.2);
}

.accueil-services {
    width: 100%;
    max-width: 1650px;
    margin-right: auto;
    margin-left: auto;
    background-color: rgba(17, 17, 19, 0.45);
}

.accueil-service-card {
    min-height: 250px;
    color: #eeeeF0;
    background-color: rgba(17, 17, 19, 0.55);
    border: 1px solid #3a302b;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accueil-service-card:hover {
    transform: translateY(-6px);
    border-color: #986246;
}

.service-number,
.method-step > span {
    color: #d9a27f;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.service-icon {
    color: #d9a27f;
    font-size: 26px;
}

.accueil-method {
    width: 100%;
    max-width: 1650px;
    margin-right: auto;
    margin-left: auto;
    border-top: 1px solid #3a302b;
}

.method-step {
    height: 100%;
    padding: 0 0 0 20px;
    border-left: 1px solid #986246;
}

@media (max-width: 991.98px) {
    #navbarNav {
        margin: 10px -12px 0;
        padding: 12px;
        background-color: rgba(17, 17, 19, 0.97);
        border-top: 1px solid rgba(217, 162, 127, 0.25);
        border-bottom: 1px solid rgba(217, 162, 127, 0.25);
    }

    #navbarNav .navbar-nav {
        gap: 4px;
    }

    #navbarNav .nav-active-indicator {
        display: none;
    }

    #navbarNav .nav-link {
        padding: 12px 16px !important;
        color: #c8c8cc !important;
        border-radius: 10px;
    }

    #navbarNav .nav-link:hover,
    #navbarNav .nav-link:focus-visible {
        color: #EEEEF0 !important;
        background-color: rgba(217, 162, 127, 0.12);
    }

    #navbarNav .nav-link.active {
        color: #111113 !important;
        background-color: #d9a27f;
    }

    .accueil-page {
        min-height: auto !important;
        align-items: flex-start !important;
        padding-top: 120px !important;
        padding-bottom: 70px !important;
    }

    .accueil-page > .container-fluid {
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    .accueil-page .row {
        align-items: stretch !important;
    }

    .accueil-content {
        padding-top: 10px;
    }

    .accueil-visual {
        max-width: none;
        min-height: 500px;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .accueil-title {
        font-size: clamp(42px, 15vw, 68px);
        letter-spacing: -1px;
    }

    .accueil-subtitle {
        font-size: 16px;
    }

    .accueil-visual {
        min-height: 390px;
        padding: 24px;
    }

    .accueil-visual-center {
        min-height: 210px;
        padding: 20px;
    }

    .accueil-visual-footer {
        flex-wrap: wrap;
        gap: 8px;
    }

    .accueil-visual-footer .eyebrow {
        font-size: 10px;
    }
}

/* Galerie et tarifs */
.galerie-page,
.tarif-page {
    padding: 130px 6% 90px;
}

/* Mentions légales */
.legal-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 130px 6% 90px;
}

.legal-intro {
    max-width: 760px;
    margin-bottom: 58px;
}

.legal-title {
    margin: 14px 0 20px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
}

.legal-lead {
    color: #c8c8cc;
    font-size: 18px;
    line-height: 1.6;
}

.legal-content {
    display: grid;
    gap: 0;
    border-top: 1px solid #3a302b;
}

.legal-section {
    max-width: 820px;
    padding: 32px 0;
    border-bottom: 1px solid #3a302b;
}

.legal-index {
    margin-bottom: 14px;
    color: #d9a27f;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.legal-section h2 {
    margin-bottom: 16px;
    font-size: 25px;
}

.legal-section p {
    color: #bcbcc0;
    line-height: 1.8;
}

.legal-section a {
    color: #d9a27f;
}

.legal-section a:hover,
.legal-section a:focus-visible {
    color: #EEEEF0;
}

.eyebrow,
.pricing-index,
.project-number {
    color: #d9a27f;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.galerie-intro,
.tarif-intro {
    max-width: 760px;
    margin-bottom: 55px;
}

.galerie-title,
.tarif-title {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    margin: 14px 0 22px;
    text-shadow: 2px 4px 4px rgba(255, 255, 255, 0.2);
}

.galerie-lead,
.tarif-lead {
    color: #c8c8cc;
    font-size: 18px;
    line-height: 1.6;
    max-width: 570px;
}

.project-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.project-card,
.pricing-card {
    min-width: 0;
    border: 1px solid #3a302b;
    background-color: rgba(17, 17, 19, 0.55);
    border-radius: 8px;
    overflow: hidden;
}

.project-link {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-link:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.project-link:focus-visible {
    outline: 2px solid #d9a27f;
    outline-offset: 5px;
}

.project-preview {
    min-height: 300px;
    position: relative;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview-studio { background: linear-gradient(135deg, #b28a6c, #49352b); }
.preview-dashboard { background: #bbc7c2; color: #18211f; padding: 24px; }
.preview-commerce { background: linear-gradient(145deg, #e4d6c4, #a88667); color: #32251e; }

.preview-studio img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
}

.project-preview strong {
    position: relative;
    z-index: 1;
    font-size: 34px;
    line-height: 0.95;
}

.preview-label {
    font-size: 11px;
    letter-spacing: 1.5px;
}

.preview-line { width: 55%; border-top: 1px solid #eeeef0; }
.dashboard-dot { width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #51625d; display: inline-block; }
.dashboard-panel { width: 42%; height: 130px; margin-top: 24px; background: #e5ebe8; border: 1px solid #80918a; }
.dashboard-chart { position: absolute; right: 26px; bottom: 35px; width: 48%; height: 95px; border-bottom: 2px solid #536b62; border-left: 2px solid #536b62; transform: skewY(-12deg); }
.preview-dashboard strong { font-size: 24px; position: absolute; right: 24px; top: 145px; }
.commerce-circle { position: absolute; right: -35px; bottom: -55px; width: 180px; height: 180px; border: 1px solid #32251e; border-radius: 50%; }

.project-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 25px;
}

.project-meta h2 { font-size: 20px; margin: 0 0 5px; }
.project-meta p { color: #a9a9ad; font-size: 13px; margin: 0; }
.project-number { flex: 0 0 auto; padding-top: 3px; }

.pricing-card { padding: 30px; display: flex; flex-direction: column; }
.pricing-card-highlighted { border-color: #986246; transform: translateY(-12px); }
.pricing-card h2 { font-size: 27px; margin: 15px 0 12px; }
.pricing-description { color: #bcbcc0; line-height: 1.6; min-height: 78px; margin-bottom: 24px; }
.pricing-price { border-top: 1px solid #3a302b; padding-top: 22px; margin: 0; color: #c8c8cc; font-size: 14px; }
.pricing-price strong { display: block; color: #EEEEF0; font-size: 30px; margin-top: 5px; }
.pricing-features { list-style: none; padding: 20px 0 25px; margin: 0; color: #c8c8cc; line-height: 2; flex: 1; }
.pricing-features li::before { content: "✓"; color: #d9a27f; margin-right: 10px; }
.pricing-card .btn { align-self: flex-start; border: 1px solid transparent; }

@media (max-width: 900px) {
    .project-grid,
    .pricing-grid { grid-template-columns: 1fr; max-width: 620px; }
    .pricing-card-highlighted { transform: none; }
}

@media (max-width: 576px) {
    .galerie-page,
    .tarif-page,
    .legal-page { padding: 110px 24px 60px; }
    .galerie-title,
    .tarif-title,
    .legal-title { font-size: 43px; }
    .project-preview { min-height: 250px; }
}


/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
    padding: 130px 6% 90px;
}

.contact-copy,
.contact-form-wrapper {
    width: 100%;
}

.contact-copy h1 {
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.1;
    margin: 14px 0 24px;
    text-shadow: 2px 4px 4px rgba(255, 255, 255, 0.25);
}

.contact-lead {
    max-width: 520px;
    color: #c8c8cc;
    font-size: 20px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 22px;
    margin-top: 55px;
}

.contact-process {
    display: grid;
    gap: 16px;
    margin-top: 38px;
    max-width: 500px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #c8c8cc;
    font-size: 14px;
}

.process-number {
    color: #d9a27f;
    font-size: 12px;
    letter-spacing: 1px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #986246;
    border-radius: 50%;
    color: #d9a27f;
}

.contact-detail-label {
    display: block;
    color: #a9a9ad;
    font-size: 12px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail a,
.contact-detail div > span:last-child {
    color: #d9a27f;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
    color: #EEEEF0;
}

.contact-form-wrapper {
    padding: 32px;
    border: 1px solid #3a302b;
    border-radius: 8px;
    background-color: rgba(17, 17, 19, 0.5);
}

.form-alert {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-left: 3px solid #d9a27f;
    color: #EEEEF0;
    background-color: rgba(217, 162, 127, 0.12);
    font-size: 13px;
    line-height: 1.6;
}

.form-alert p,
.form-alert ul {
    margin: 0;
}

.form-alert ul {
    padding-left: 18px;
}

.form-alert-error {
    border-left-color: #d97f7f;
    background-color: rgba(217, 127, 127, 0.12);
}

.form-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.form-heading h2 {
    margin: 0 0 4px;
    text-shadow: 2px 4px 4px rgba(255, 255, 255, 0.25);
}

.form-heading p {
    color: #a9a9ad;
    font-size: 12px;
    margin: 0;
}

.form-step { color: #d9a27f; font-size: 13px; }

.contact-form {
    display: grid;
    gap: 20px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 14px;
    color: #EEEEF0;
    background-color: transparent;
    border: 3px solid #292A2E;
    border-radius: 20px;
    box-shadow: 1px 2px 6px rgba(41, 42, 46, 1);
    font: inherit;
}

.form-field label {
    color: #c8c8cc;
    font-size: 13px;
}

.form-field select option { color: #111113; }

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #a9a9ad;
    font-size: 11px;
    line-height: 1.5;
}

.consent-field input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: #986246;
}

.consent-field label { cursor: pointer; }

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #EEEEF0;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: 2px solid #EEEEF0;
    outline-offset: 2px;
}

.contact-submit {
    border: 1px solid transparent;
    cursor: pointer;
    justify-self: start;
}

.contact-submit i { margin-left: 8px; }

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 110px 24px 70px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
