/* ================================================================
   MyHostPack — Custom Styles
   v2.0 — Palette C : Moderne & rassurant
   Couleurs : #1E293B (dark) · #F8FAFC (bg) · #84A98C (sage) · #F1F5F9 (section)
================================================================ */

/* ────────────────────────────────────────────────────────────
   VARIABLES
──────────────────────────────────────────────────────────── */
:root {
    --mhp-dark:       #1E293B;
    --mhp-dark2:      #0F172A;
    --mhp-mid:        #475569;
    --mhp-muted:      #64748B;
    --mhp-light-text: #94A3B8;
    --mhp-sage:       #84A98C;
    --mhp-sage-light: #D4EDD8;
    --mhp-sage-bg:    #E8F0E8;
    --mhp-bg:         #F8FAFC;
    --mhp-section:    #F1F5F9;
    --mhp-white:      #FFFFFF;
    --mhp-border:     #E2E8F0;
    --mhp-border2:    #CBD5E1;
    --navbar-height:  64px;
    --section-gap:    3rem;
}

/* ────────────────────────────────────────────────────────────
   RESET / BASE
──────────────────────────────────────────────────────────── */
body {
    background-color: var(--mhp-bg);
    color: var(--mhp-dark);
}

/* ────────────────────────────────────────────────────────────
   UTILITAIRES
──────────────────────────────────────────────────────────── */
.text-sage       { color: var(--mhp-sage)       !important; }
.text-muted-mhp  { color: var(--mhp-muted)      !important; }
.bg-mhp-section  { background-color: var(--mhp-section) !important; }
.bg-mhp-dark     { background-color: var(--mhp-dark)    !important; }
.bg-mhp-dark2    { background-color: var(--mhp-dark2)   !important; }

.py-section { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
.pb-section { padding-bottom: var(--section-gap); }

/* ────────────────────────────────────────────────────────────
   BOUTONS
──────────────────────────────────────────────────────────── */
.btn-mhp-dark {
    background-color: var(--mhp-dark);
    border-color:     var(--mhp-dark);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.15s;
}
.btn-mhp-dark:hover {
    background-color: var(--mhp-dark2);
    border-color:     var(--mhp-dark2);
    color: #fff;
}

.btn-mhp-sage {
    background-color: var(--mhp-sage-light);
    border-color:     var(--mhp-sage-light);
    color: var(--mhp-dark);
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.15s;
}
.btn-mhp-sage:hover {
    background-color: #C0DFC5;
    border-color:     #C0DFC5;
    color: var(--mhp-dark);
}

.btn-mhp-outline {
    background: transparent;
    border: 1.5px solid var(--mhp-border2);
    color: var(--mhp-dark);
    border-radius: 8px;
    font-weight: 600;
}
.btn-mhp-outline:hover {
    border-color: var(--mhp-dark);
    color: var(--mhp-dark);
    background: transparent;
}

/* ────────────────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────────────────── */
#navbar {
    background: var(--mhp-white);
    border-bottom: 1px solid var(--mhp-border);
    min-height: var(--navbar-height);
    transition: box-shadow 0.2s;
}
#navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--mhp-dark);
}
#navbar .brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mhp-dark);
    letter-spacing: -0.3px;
}
#navbar .nav-link {
    color: var(--mhp-muted);
    font-size: 0.875rem;
    padding: 0.4rem 0.7rem;
    transition: color 0.15s;
}
#navbar .nav-link:hover { color: var(--mhp-dark); }

/* ────────────────────────────────────────────────────────────
   HERO — layout 2 colonnes
──────────────────────────────────────────────────────────── */
.hero-section {
    background: var(--mhp-bg);
    min-height: 88vh;
    display: flex;
    flex-direction: column;
}
.hero-section > .row {
    flex: 1;
}

/* Colonne gauche : photo */
.hero-photo-col {
    background: var(--mhp-section);
    min-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder photo IA */
.photo-placeholder-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(30, 41, 59, 0.72);
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    z-index: 2;
    max-width: 240px;
}
.photo-placeholder-badge .badge-title {
    color: var(--mhp-sage);
    font-size: 0.68rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}
.photo-placeholder-badge .badge-desc {
    color: rgba(255,255,255,0.78);
    font-size: 0.65rem;
    line-height: 1.45;
}

/* Colonne droite : texte */
.hero-text-col {
    padding: 5rem 3rem 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.hero-pill {
    display: inline-block;
    background: var(--mhp-sage-bg);
    color: #2D5A35;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--mhp-dark);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 0.9rem;
}
.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--mhp-muted);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--mhp-muted);
    line-height: 1.65;
    margin-bottom: 1.4rem;
    max-width: 380px;
}

.hero-offer-block {
    margin-top: 0.5rem;
}
.hero-offer-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2D5A35;
    display: block;
    margin-bottom: 0.5rem;
}
.check-bubble-gift {
    background: transparent !important;
    font-size: 0.85rem;
}

.hero-price-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1.5px solid var(--mhp-border2);
    border-radius: 8px;
    padding: 0.55rem 1.1rem;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}
.hero-price-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--mhp-dark);
    white-space: nowrap;
}
.hero-price-sub {
    font-size: 0.72rem;
    color: var(--mhp-muted);
    line-height: 1.4;
}

.hero-tagline-2 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--mhp-dark);
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

/* Checklist hero */
.hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.hero-checks li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.875rem;
    color: var(--mhp-mid);
    line-height: 1.5;
}
.check-bubble {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mhp-sage-light);
    color: #2D6A34;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ────────────────────────────────────────────────────────────
   SECTION TAGLINE & TITLE
──────────────────────────────────────────────────────────── */
.section-tagline {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mhp-sage);
    margin-bottom: 0.5rem;
}
.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--mhp-dark);
    letter-spacing: -0.8px;
    line-height: 1.2;
}

/* ────────────────────────────────────────────────────────────
   FEATURES — SCROLL HORIZONTAL
──────────────────────────────────────────────────────────── */
.features-section {
    background: var(--mhp-section);
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.features-track {
    overflow: hidden;
    padding: 6px 0 16px;
}
.features-belt {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: features-marquee 35s linear infinite;
}
.features-belt:hover {
    animation-play-state: paused;
}
@keyframes features-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feature-card {
    background: var(--mhp-white);
    border-radius: 14px;
    border: 1px solid var(--mhp-border);
    padding: 20px 18px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: border-color 0.15s, box-shadow 0.15s;
    word-wrap: break-word;
}
.feature-card:hover {
    border-color: var(--mhp-sage);
    box-shadow: 0 4px 16px rgba(132,169,140,0.15);
}
.feature-card.feat-highlight {
    background: var(--mhp-dark);
    border-color: var(--mhp-dark);
}
.feature-card.feat-photo {
    padding: 0;
    overflow: hidden;
    min-width: 220px;
}

.feat-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.feat-icon-sage  { background: var(--mhp-sage-bg); }
.feat-icon-light { background: var(--mhp-section); }

.feat-title {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--mhp-dark);
    margin-bottom: 4px;
}
.feat-title-light { color: var(--mhp-sage) !important; }
.feat-desc {
    font-size: 0.72rem;
    color: var(--mhp-muted);
    line-height: 1.55;
}
.feat-desc-light { color: var(--mhp-light-text) !important; }

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}
.ptag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}
.ptag-sage  { background: var(--mhp-sage-light); color: #2D5A35; }
.ptag-light { background: rgba(132,169,140,0.2); color: var(--mhp-sage); }

/* ────────────────────────────────────────────────────────────
   VIDÉOS
──────────────────────────────────────────────────────────── */
.video-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--mhp-border);
    background: var(--mhp-white);
}
.video-chrome {
    background: #F1F5F9;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--mhp-border);
}
.video-placeholder {
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.15s;
}
.video-placeholder:hover { opacity: 0.92; }
.video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.vbadge-sage  { background: var(--mhp-sage-light); color: #2D5A35; }
.vbadge-light { background: rgba(255,255,255,0.15); color: #fff; }
.play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mhp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
    font-size: 1rem;
}
.video-placeholder:hover .play-btn { transform: scale(1.06); }
.video-card-body { padding: 16px 18px; }
.vtag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vtag-sage  { background: var(--mhp-sage-bg); color: #2D5A35; }
.vtag-dark  { background: rgba(255,255,255,0.08); color: var(--mhp-sage); }
.video-card-title { font-size: 0.88rem; font-weight: 700; color: var(--mhp-dark); margin-bottom: 4px; }
.video-card-desc  { font-size: 0.75rem; color: var(--mhp-muted); line-height: 1.55; }

/* Dots navigateur */
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-red    { background: #E74C3C; }
.dot-yellow { background: #F1C40F; }
.dot-green  { background: #2ECC71; }
.url-bar {
    flex: 1;
    background: var(--mhp-white);
    border: 0.5px solid var(--mhp-border);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.65rem;
    color: var(--mhp-muted);
    text-align: center;
}

/* Admin tabs dans la vidéo 2 */
.admin-tabs-bar {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
}
.admin-tab {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 0.6rem;
    color: var(--mhp-light-text);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.admin-tab-active {
    background: var(--mhp-sage);
    color: var(--mhp-dark);
    border-color: var(--mhp-sage);
    font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   AVANTAGES
──────────────────────────────────────────────────────────── */
.adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    max-width: 680px;
    margin: 2rem auto 0;
}
.adv-cell {
    background: rgba(255,255,255,0.04);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
}
.adv-icon-wrap {
    width: 38px;
    height: 38px;
    background: rgba(132,169,140,0.15);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.adv-title { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.adv-desc  { font-size: 0.75rem; color: var(--mhp-light-text); line-height: 1.55; }

/* ────────────────────────────────────────────────────────────
   BANDEAU CADEAUX
──────────────────────────────────────────────────────────── */
.gift-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--mhp-white);
    border: 1px solid var(--mhp-border);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    max-width: 720px;
    margin: 0 auto;
}
.gift-divider { width: 1px; height: 40px; background: var(--mhp-border); flex-shrink: 0; }
.gift-icon-wrap {
    width: 38px;
    height: 38px;
    background: var(--mhp-sage-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.gift-label { font-size: 0.825rem; font-weight: 700; color: var(--mhp-dark); margin: 0; }
.gift-value { font-size: 0.7rem; color: var(--mhp-muted); }

/* ────────────────────────────────────────────────────────────
   EXEMPLE DE SITE — 2 colonnes
──────────────────────────────────────────────────────────── */
.example-intro {
    color: var(--mhp-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
#exemple .section-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.example-signature {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mhp-dark);
    margin-bottom: 1.5rem;
}
.example-screenshot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 40, 55, 0.13), 0 4px 16px rgba(27, 40, 55, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.07);
}
.example-chrome {
    background: #EAEEF2;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #DDD;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.site-footer { background: var(--mhp-dark2); }
.footer-link { color: var(--mhp-light-text) !important; text-decoration: none; font-size: 0.75rem; }
.footer-link:hover { color: var(--mhp-white) !important; }

/* ────────────────────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────────────────── */
.vw-hidden  { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.vw-visible { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section { flex-direction: column; }
    .hero-photo-col { min-height: 260px; }
    .hero-text-col { padding: 2.5rem 2rem; }
}
@media (max-width: 767.98px) {
    .py-section { padding-top: 3rem; padding-bottom: 3rem; }
    .pb-section { padding-bottom: 3rem; }
    .adv-grid { grid-template-columns: 1fr; }
    .gift-banner { flex-direction: column; align-items: flex-start; }
    .gift-divider { display: none; }
    .features-track { padding-left: 1rem; padding-right: 1rem; }
    .hero-text-col { padding: 2rem 1.25rem; }
}
