/* ==========================
   AURA RECORDS - STYLE GLOBAL
========================== */

:root {
    --black: #050505;
    --dark: #0b0b0b;
    --card: #111;
    --gold: #d8bd3d;
    --gold2: #f4d86b;
    --white: #fff;
    --muted: #cfcfcf;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top, #151515 0%, #050505 55%, #000 100%);
    color: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section h2 {
    text-align: center;
    color: var(--gold);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    letter-spacing: 3px;
    text-shadow: 0 0 22px rgba(216, 189, 61, 0.45);
    margin-bottom: 35px;
}


/* ==========================
   BOUTONS
========================== */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 14px 28px;

    border-radius: 10px;
    border: 1px solid var(--gold);

    background: var(--gold);
    color: #050505;

    font-weight: 900;

    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(216, 189, 61, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #050505;
}


/* ==========================
   HEADER / MENU
========================== */

/* ================= HEADER ================= */

/* ================= HEADER ================= */

.header{
    position: sticky;
    top: 0;
    z-index: 1000;

    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;

    width: min(1280px,95%);
    margin: 20px auto;
    padding: 14px 35px;

    background: rgba(8,8,8,.95);
    border: 1px solid rgba(216,189,61,.25);
    border-radius: 18px;

    backdrop-filter: blur(12px);
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 70px;
    height: 70px;
}

.nav-links{
    display: flex;
    justify-content: center;   /* centre tout le menu */
    align-items: center;
    gap: 42px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

.nav-links .btn{
    margin-left:20px;   /* espace avant le bouton Contact */
}

.nav-links .btn:hover{
    background:#f5dc73;
}

.nav-toggle{
    display:none;
}

/* ==========================
   HERO ACCUEIL
========================== */

.hero {
    min-height: calc(100vh - 120px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 24px;
}

.hero h1 {
    color: #f7e78a;

    font-size: clamp(4rem, 10vw, 7.5rem);

    letter-spacing: 4px;
    line-height: 1;
}

.hero-subtitle {
    margin-top: 24px;

    letter-spacing: 4px;

    font-weight: 900;
}

.hero-slogan {
    margin-top: 38px;

    max-width: 850px;

    color: #ddd;

    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.35;
    letter-spacing: 3px;

    text-transform: uppercase;

    text-shadow: 0 0 20px rgba(216, 189, 61, 0.25);
}

.hero-location {
    margin-top: 26px;

    color: #fff;
}

.hero-actions {
    margin-top: 26px;

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}


/* ==========================
   CARROUSEL ARTISTES
========================== */

.artist-section {
    max-width: 1500px;
}

.artist-subtitle {
    text-align: center;
    color: #ddd;
    margin: -10px auto 35px;
    font-size: 1.1rem;
}

.artist-carousel {
    position: relative;
    overflow: hidden;
}

.artist-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 8px 24px;
    scrollbar-width: none;
}

.artist-track::-webkit-scrollbar {
    display: none;
}

.artist-card {
    position: relative;
    flex: 0 0 260px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(216, 189, 61, 0.35);
    background: #080808;
    box-shadow: 0 0 22px rgba(216, 189, 61, 0.12);
    transition: 0.35s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 0 32px rgba(216, 189, 61, 0.35);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(0.85);
    transition: 0.4s ease;
}

.artist-card:hover img {
    transform: scale(1.06);
}

.artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.35) 42%,
        transparent 70%
    );
}

.artist-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 2;
    text-align: center;
}

.artist-info h3 {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-info span {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: 1px solid var(--gold);

    background: rgba(0, 0, 0, 0.75);
    color: var(--gold);

    font-size: 42px;
    line-height: 1;

    cursor: pointer;
    transition: 0.3s ease;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #050505;
    box-shadow: 0 0 24px rgba(216, 189, 61, 0.45);
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

@media (max-width: 650px) {
    .artist-card {
        flex-basis: 230px;
        height: 360px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }
}


/* ==========================
   BENEFICES
========================== */

.compact {
    padding-top: 30px;
}

.benefits {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit {
    position: relative;

    min-height: 230px;

    padding: 30px 22px;

    border-radius: 18px;
    border: 2px solid var(--gold);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;

    text-align: center;

    overflow: hidden;

    background: linear-gradient(180deg, #151515, #050505);

    box-shadow:
        0 0 18px rgba(216, 189, 61, 0.25),
        inset 0 0 20px rgba(216, 189, 61, 0.08);

    transition: 0.35s;
}

.benefit:hover {
    transform: translateY(-8px);

    box-shadow:
        0 0 35px rgba(216, 189, 61, 0.5),
        inset 0 0 25px rgba(216, 189, 61, 0.1);
}

.benefit span {
    width: 68px;
    height: 68px;

    border: 2px solid var(--gold);
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-size: 38px;

    box-shadow: 0 0 18px rgba(216, 189, 61, 0.35);
}

.benefit strong {
    font-size: 1.4rem;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.benefit strong em {
    display: block;

    color: var(--gold);

    font-style: normal;
}

.benefit:nth-child(4) {
    grid-column: 2;
}


/* ==========================
   AVIS GOOGLE
========================== */

.review-list {
    max-width: 620px;
    margin: 0 auto;

    display: grid;
    gap: 16px;
}

.review {
    padding: 18px;

    border-radius: 10px;
    border: 1px solid var(--gold);

    background: #fff;
    color: #050505;

    box-shadow: 0 0 25px rgba(216, 189, 61, 0.28);
}

.review strong {
    display: block;

    margin-bottom: 8px;

    font-size: 1.1rem;
}

.stars {
    margin-bottom: 8px;

    color: #f4c430;
}

.review span {
    display: block;

    margin-bottom: 16px;

    font-size: 0.9rem;
}

.review p {
    line-height: 1.5;
}


/* ==========================
   CTA BAS DE PAGE
========================== */

.packs-footer-note {
    width: min(1350px, 100%);

    margin: 70px auto 50px;

    padding: 35px 24px;

    border: 1px solid rgba(216, 189, 61, 0.45);
    border-radius: 14px;

    background: #080808;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;

    text-align: center;
}

.packs-footer-note p {
    font-size: 1.35rem;
    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ==========================
   POPUP ENVOI PROJET
========================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: none;
    justify-content: center;
    align-items: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.88);
}

.checkout-modal.active {
    display: flex;
}

.checkout-box {
    width: min(430px, 100%);

    padding: 30px;

    background: #080808;

    border: 1px solid var(--gold);
    border-radius: 16px;

    box-shadow: 0 0 40px rgba(216, 189, 61, 0.45);
}

.checkout-box h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 14px;
}

.checkout-box p {
    color: #ddd;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}

.checkout-box label {
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin: 14px 0 8px;
}

.checkout-box input {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: 1px solid var(--gold);

    background: #050505;
    color: #fff;

    margin-bottom: 10px;
}

.checkout-box button {
    width: 100%;
    margin-top: 12px;
    padding: 15px;

    border: none;
    border-radius: 10px;

    background: var(--gold);
    color: #050505;

    font-weight: 900;
    cursor: pointer;
}

#closeCheckout {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* ==========================
   WHATSAPP
========================== */

.whatsapp-float {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #25d366;

    box-shadow:
        0 0 0 10px rgba(37, 211, 102, 0.16),
        0 0 24px rgba(37, 211, 102, 0.45);

    z-index: 9998;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
}


/* ==========================
   FOOTER
========================== */

.footer {
    width: min(1160px, 92%);

    margin: 50px auto 0;

    padding: 40px 20px 30px;

    border-top: 2px solid var(--gold);

    background: #050505;

    box-shadow: 0 0 45px rgba(216, 189, 61, 0.18);

    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
}

.footer h3 {
    color: var(--gold);

    margin-bottom: 12px;
}

.footer p {
    color: #ddd;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer small {
    grid-column: 1 / -1;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding-top: 20px;

    text-align: center;

    color: #bbb;
}

/* =======================
        PAGE CGV
======================= */

.legal-page{

    max-width:1200px;
    margin:auto;

}

.legal-page h1{

    text-align:center;

    font-size:72px;

    color:var(--gold);

    margin-bottom:55px;

    text-shadow:
        0 0 12px rgba(212,175,55,.55),
        0 0 40px rgba(212,175,55,.25);

}

.legal-card{

    background:#151515;

    border:1px solid rgba(212,175,55,.55);

    border-radius:24px;

    padding:45px 35px;

    box-shadow:
        0 0 35px rgba(0,0,0,.45);

}

.legal-section{

    max-width:1050px;

    margin:auto;

}

.legal-section h2{

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    font-weight:700;

}

.legal-section p{

    color:#e4e4e4;

    font-size:20px;

    line-height:1.9;

    margin-bottom:18px;

}

.legal-divider{

    width:100%;

    height:1px;

    background:rgba(212,175,55,.30);

    margin:40px 0;

}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .header {
        justify-content: space-between;
    }

    .nav-links {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        padding: 20px;

        background: #050505;

        border-bottom: 1px solid rgba(216, 189, 61, 0.35);

        flex-direction: column;

        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefit:nth-child(4) {
        grid-column: auto;
    }

    .footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .hero {
        padding-top: 45px;
    }

    .artist-card {
        flex-basis: 230px;
        height: 360px;
    }

    .section {
        padding: 70px 18px;
    }

    .whatsapp-float {
        width: 64px;
        height: 64px;

        right: 20px;
        bottom: 20px;
    }
}

/* ==========================
   SERVICES
========================== */

.services-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 24px;
}

.services-page h1 {
    text-align: center;
    color: var(--gold);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 55px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-box {
    min-height: 560px;
    padding: 34px 26px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: linear-gradient(180deg, #151515, #050505);

    border: 1px solid rgba(216, 189, 61, 0.6);
    border-radius: 18px;

    box-shadow: 0 0 22px rgba(216, 189, 61, 0.15);
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: var(--gold2);
    box-shadow: 0 0 35px rgba(216, 189, 61, 0.4);
}

.service-box h3 {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.service-box p {
    color: #fff;
    max-width: 280px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.service-price {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    margin: 18px 0 6px;
}

.service-options {
    width: 100%;
    margin-top: 18px;
}

.image-zone {
    margin-top: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon {
    width: 120px;
    height: 120px;

    object-fit: cover;

    border-radius: 18px;
    border: 1px solid rgba(216, 189, 61, 0.7);

    box-shadow: 0 0 22px rgba(216, 189, 61, 0.35);
}

.service-box label {
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 10px;
}

.service-box select,
.service-box input {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: 1px solid var(--gold);

    background: #050505;
    color: #fff;

    font-size: 1rem;
}

.service-box .btn,
.quote-btn {
    width: 100%;
    padding: 16px;
    margin-top: auto;

    font-size: 1rem;
    font-weight: 900;
}

/* Responsive */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   PAGE PACKS
========================== */

.packs-section {
    max-width: 1450px;
}

.packs-header {
    text-align: center;
    margin-bottom: 35px;
}

.packs-header span {
    color: var(--gold);
    letter-spacing: 6px;
    font-weight: 700;
    font-size: 14px;
}

.packs-header h2 {
    margin: 10px 0;
    font-size: clamp(3rem, 7vw, 6rem);
    color: #fff;
}

.packs-header h2 strong {
    color: var(--gold);
}

.packs-header p {
    color: #ddd;
    font-size: 1.2rem;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pack-card {
    position: relative;
    overflow: hidden;
    padding: 34px 26px 28px;
    border-radius: 18px;
    border: 1px solid rgba(216, 189, 61, 0.55);
    background: linear-gradient(180deg, #151515, #050505);
    box-shadow: 0 0 22px rgba(216, 189, 61, 0.14);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: 0.35s ease;
}

.pack-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold2);
    box-shadow: 0 0 35px rgba(216, 189, 61, 0.45);
}

.popular {
    border-color: var(--gold2);
    box-shadow:
        0 0 38px rgba(216, 189, 61, 0.35),
        inset 0 0 20px rgba(216, 189, 61, 0.08);
}

.pack-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 14px;
    background: linear-gradient(90deg, #f4d86b, #d8bd3d);
    color: #050505;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 3;
}

.pack-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 22px;
    border: 2px solid rgba(216, 189, 61, 0.75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #181818, #050505);
    box-shadow: 0 0 28px rgba(216, 189, 61, 0.25);
    overflow: hidden;
}

.pack-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pack-kicker {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 14px;
}

.pack-card h3 {
    margin: 8px 0;
    color: #fff;
    font-size: 2rem;
}

.tracks {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.pack-card ul {
    list-style: none;
    padding: 22px 0;
    margin: 22px 0;
    border-top: 1px solid rgba(216, 189, 61, 0.25);
    border-bottom: 1px solid rgba(216, 189, 61, 0.25);
    text-align: left;
    flex-grow: 1;
}

.pack-card li {
    margin-bottom: 16px;
    color: #fff;
}

.pack-card li strong {
    display: block;
}

.pack-card small {
    display: block;
    color: #bbb;
    margin-top: 4px;
}

.price {
    color: var(--gold);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(216, 189, 61, 0.35);
}

.price span {
    display: block;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 4px;
}

.pack-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding: 13px 18px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
}

.pack-btn:hover {
    background: var(--gold);
    color: #050505;
    box-shadow: 0 0 25px rgba(216, 189, 61, 0.45);
}

@media (max-width: 1100px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .packs-grid {
        grid-template-columns: 1fr;
    }

    .pack-card {
        padding: 30px 22px;
    }
}

/* ==========================
   PANIER
========================== */

.cart-link {
    position: relative;
}

#cartCount {
    background: var(--gold);
    color: #050505;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 12px;
    margin-left: 4px;
}

.cart-page {
    max-width: 850px;
    margin: 0 auto;
    padding: 90px 24px;
    text-align: center;
}

.cart-page h1 {
    color: var(--gold);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 45px;
}


.cart-items {
    display: grid;
    gap: 18px;
}

.cart-item {
    background: linear-gradient(180deg, #151515, #050505);
    border: 1px solid rgba(216, 189, 61, 0.6);
    border-radius: 16px;
    padding: 22px;
    text-align: left;
}

.cart-item h3 {
    color: var(--gold);
    margin-bottom: 8px;
}

.cart-item p {
    color: #ddd;
}

.cart-remove {
    margin-top: 14px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}

.cart-total {
    margin: 35px 0;
    font-size: 1.5rem;
}

.cart-total strong {
    color: var(--gold);
}

.cart-send {
    width: 100%;
    max-width: 420px;
}

.cart-clear {
    display: block;
    margin: 18px auto 0;
    background: transparent;
    color: #aaa;
    border: none;
    cursor: pointer;
}

/* ==========================
   PAGE CONTACT
========================== */

.contact-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 90px 24px;
}

.contact-page h2 {
    text-align: center;
    color: var(--gold);
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 45px;
    text-shadow: 0 0 22px rgba(216, 189, 61, 0.45);
}

.contact-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 34px;

    background: linear-gradient(180deg, #151515, #050505);

    border: 1px solid rgba(216, 189, 61, 0.6);
    border-radius: 18px;

    box-shadow: 0 0 25px rgba(216, 189, 61, 0.18);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;

    border-radius: 10px;
    border: 1px solid var(--gold);

    background: #050505;
    color: #fff;

    font-size: 16px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold2);
    box-shadow: 0 0 18px rgba(216, 189, 61, 0.35);
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
}

.phone-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
}

.phoneBox {
    width: min(430px, 100%);
    padding: 30px;

    background: #080808;
    border: 1px solid var(--gold);
    border-radius: 16px;

    box-shadow: 0 0 40px rgba(216, 189, 61, 0.45);
}

.phoneBox h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 14px;
}

.phoneBox p {
    color: #ddd;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 18px;
}

.phoneBox label {
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin: 14px 0 8px;
}

.phoneBox input,
.phoneBox select {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: 1px solid var(--gold);

    background: #050505;
    color: #fff;

    margin-bottom: 10px;
}

.phoneBox button {
    width: 100%;
    margin-top: 14px;
    padding: 15px;

    border: none;
    border-radius: 10px;

    background: var(--gold);
    color: #050505;

    font-weight: 900;
    cursor: pointer;
}

.phoneBox small {
    display: block;
    margin-top: 14px;

    color: #aaa;
    text-align: center;
    font-size: 12px;
}



/* ==========================
   RESPONSIVE MOBILE / TABLETTE
========================== */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-box {
        grid-column: auto;
    }

    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 800px) {

    body {
        overflow-x: hidden;
    }

    .header {
        width: 100%;
        border-radius: 0;
        justify-content: space-between;
    }

    .logo img {
        width: 68px;
        height: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: center;

        padding: 24px;

        background: #050505;
        border-bottom: 1px solid rgba(216, 189, 61, 0.4);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 80px 18px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-slogan {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .services-grid,
    .packs-grid,
    .benefits {
        grid-template-columns: 1fr;
    }

    .service-box,
    .pack-card,
    .benefit {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .service-box {
        min-height: auto;
    }

    .service-box .btn,
    .quote-btn,
    .pack-btn {
        width: 100%;
    }

    .artist-card {
        flex: 0 0 230px;
        height: 360px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 32px;
    }

    .section {
        padding: 70px 18px;
    }

    .section h2,
    .services-page h1 {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }

    .review-list {
        max-width: 100%;
    }

    .packs-footer-note {
        margin: 50px 18px;
        padding: 28px 18px;
    }

    .packs-footer-note p {
        font-size: 1rem;
    }

    .footer {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 20px;
    }

    .footer-links {
        align-items: center;
    }

    .whatsapp-float {
        width: 62px;
        height: 62px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }

}

@media (max-width: 480px) {

    .phoneBox,
    .booking-box {
        width: 100%;
        padding: 24px 20px;
    }

    .phoneBox h2,
    .booking-box h2 {
        font-size: 1.4rem;
    }

    .phoneBox p,
    .booking-box p {
        font-size: 0.9rem;
    }

    .phoneBox input,
    .booking-box input,
    .service-box select,
    .service-box input,
    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .pack-icon {
        width: 100px;
        height: 100px;
    }

    .price {
        font-size: 2.8rem;
    }

    .artist-card {
        flex: 0 0 210px;
        height: 330px;
    }

}

.toast {
    position: fixed;
    right: 30px;
    bottom: 110px;
    z-index: 999999;

    min-width: 280px;
    max-width: 360px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    padding: 16px 18px;

    background: #080808;
    color: #fff;

    border: 1px solid var(--gold);
    border-radius: 14px;

    box-shadow: 0 0 25px rgba(216, 189, 61, 0.35);

    opacity: 0;
    transform: translateY(25px);
    pointer-events: none;

    transition: 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast strong {
    display: block;
    color: var(--gold);
    margin-bottom: 4px;
}

.toast p {
    margin: 0;
    color: #ddd;
    font-size: 0.9rem;
}

.toast a {
    white-space: nowrap;
    padding: 10px 12px;

    border-radius: 10px;
    background: var(--gold);
    color: #050505;

    font-weight: 900;
    text-decoration: none;
}

/* Correction grille packs PC */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pack-card {
    width: 100%;
}

/* Bouton pack en style bouton */
.pack-btn {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 1100px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .packs-grid {
        grid-template-columns: 1fr;
    }
}

