/* =====================================================
   🎬 STYLE GLOBAL — VERSION ULTRA PREMIUM
===================================================== */

/* ------------------------------
   VARIABLES
--------------------------------*/
:root {
    --bg: #07080e;
    --bg-alt: #0d0f18;
    --panel: #141726;
    --card: #1a1e2f;
    --card-alt: #1c2133;

    --text: #f5f7fa;
    --text-soft: #b8bccc;

    --gold-1: #ffdf8d;
    --gold-2: #f5c75d;
    --gold-3: #eab341;

    --danger: #ff4b5c;

    --radius: 16px;
    --radius-xl: 22px;

    --shadow-soft: 0 12px 32px rgba(0,0,0,0.35);
    --shadow-mid: 0 18px 45px rgba(0,0,0,0.55);
    --shadow-deep: 0 28px 65px rgba(0,0,0,0.65);

    --transition: 0.28s ease;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Inter", system-ui, sans-serif;
    background: linear-gradient(160deg, #0e111b, #07080e);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

img { max-width: 100%; display: block; }

/* STRUCTURE */
.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.section { padding: 90px 0; }

.section-alt {
    padding: 90px 0;
    background: linear-gradient(180deg, #0d0f18, #090b12);
}

/* TITRES */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 35px;
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    color: transparent;
}

/* =====================================================
   🎬 HERO SECTION
===================================================== */

.hero {
    padding: 130px 0 100px;
    background: radial-gradient(circle at top, #1a2035 0%, #080a10 80%);
    position: relative;
    overflow: hidden;
}

/* Halo haut */
.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246,197,96,0.18), transparent 70%);
    filter: blur(55px);
}

/* Lumière bas */
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.04), transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, #fff, #ffe7b4);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-sub { font-size: 1.25rem; color: var(--gold-1); }

.hero-tagline, .hero-text { color: var(--text-soft); }

/* =====================================================
   HERO GALLERY — OPTION A
===================================================== */

.hero-gallery-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 25px;
}

.hero-gallery-pro img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 22px 55px rgba(0,0,0,0.55);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: zoom-in;
}

.hero-gallery-pro img:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 32px 75px rgba(0,0,0,0.75);
}

/* =====================================================
   GRID
===================================================== */

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* =====================================================
   POURQUOI NOUS CHOISIR
===================================================== */

.why-item {
    background: linear-gradient(145deg, #1a1e2d, #121622);
    padding: 26px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-mid);
}

/* =====================================================
   PACKS
===================================================== */

.pricing-card {
    padding: 32px 28px;
    background: linear-gradient(145deg, #1c2031, #121620);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(246,197,96,0.18), transparent 70%);
    filter: blur(35px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.pricing-card .price {
    font-size: 1.6rem;
    color: var(--gold-1);
    margin-bottom: 15px;
}

.pricing-card.featured {
    border: 1px solid var(--gold-2);
    background: linear-gradient(135deg, #242a40, #171c2c);
    box-shadow: 0 0 40px rgba(246,197,96,0.28), var(--shadow-mid);
}

/* =====================================================
   PRODUIT DETAIL
===================================================== */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
}

.product-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow-mid);
    transition: var(--transition);
    cursor: zoom-in;
}

.product-images img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-deep);
}

/* WARNINGS */
.warning-list { color: var(--danger); }

/* =====================================================
   CONTACT
===================================================== */

#contact {
    background: linear-gradient(135deg, #0c0e15, #07080e);
    padding: 90px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-block {
    background: rgba(255,255,255,0.03);
    padding: 28px 26px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
    max-width: 550px;
    margin-top: 20px;
}

.contact-phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-1);
    text-decoration: none;
}

.btn-contact-large {
    display: block;
    margin-top: 25px;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #1a1a1a;
    text-align: center;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
}

/* =====================================================
   FAQ
===================================================== */

.faq-item {
    background: linear-gradient(145deg, #1a1d2b, #141722);
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
}

.faq-item h3 { color: var(--gold-1); }

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #07080d;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: var(--text-soft);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =====================================================
   RESPONSIVE FIX — MOBILE IMAGES LARGE & ENTIÈRES
===================================================== */

@media (max-width: 950px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-gallery-pro { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {

    .hero-gallery-pro {
        grid-template-columns: 1fr;
    }

    .hero-gallery-pro img,
    .product-images img {
        width: 100%;
        height: 360px !important;
        object-fit: contain !important;
        object-position: center;
        background: #000;
        padding: 0;
        border-radius: 18px;
    }

    h1 { font-size: 2.1rem; }
    .section { padding: 60px 0; }
}

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.25s ease-out;
}

.lightbox-overlay img {
    max-width: 92%;
    max-height: 88%;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.70);
    animation: zoomIn 0.25s ease-out;
}

.lightbox-close {
    position: fixed;
    top: 35px;
    right: 40px;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
    z-index: 10000;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: 0.2s ease;
}

.lightbox-close:hover {
    color: var(--gold-2);
    transform: scale(1.15);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.click-zoom { cursor: zoom-in; }

/* =====================================================
   📱 MOBILE — PACKS EN CARTES EMPILÉES
===================================================== */

@media (max-width: 700px) {

    .pricing-cards-container,
    .grid-3 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .pricing-card {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 30px 24px !important;
        border-radius: 20px !important;
    }

    .pricing-card h3,
    .pricing-card .price {
        text-align: center !important;
    }
}
