/* ============================================================
   home.css
   ============================================================ */

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.lp-hero {
    background: var(--lp-dark);
    border-bottom: 1px solid var(--lp-gold-border);
    padding: 4rem 1.5rem;
    text-align: center;
}

.lp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lp-gold-subtle);
    border: 0.5px solid var(--lp-gold-border);
    border-radius: 20px;
    padding: 4px 12px;
    color: var(--lp-gold);
    font-size: 12px;
    margin-bottom: 1.25rem;
}

.lp-hero h1 {
    color: #f0f0f8;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.lp-hero-lead {
    color: var(--lp-muted);
    max-width: 500px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    font-size: 14px;
}

/* ----------------------------------------------------------
   Boutons communs (home)
   ---------------------------------------------------------- */
.btn-lp-gold {
    background: var(--lp-gold);
    border: none;
    border-radius: var(--lp-radius-btn);
    padding: 9px 20px;
    color: var(--lp-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.15s;
    font-size: 14px;
}

.btn-lp-gold:hover {
    background: var(--lp-gold-hover);
    color: var(--lp-dark);
}

.btn-lp-ghost {
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid var(--lp-border-soft);
    border-radius: var(--lp-radius-btn);
    padding: 9px 20px;
    color: #c0c0d8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    font-size: 14px;
}

.btn-lp-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0f0;
}

/* ----------------------------------------------------------
   Section titre
   ---------------------------------------------------------- */
.lp-section-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--lp-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.lp-section-title i {
    color: var(--lp-gold);
    font-size: 18px;
}

.lp-section-link {
    font-size: 13px;
    color: var(--lp-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
}

.lp-section-link:hover {
    color: var(--lp-dark);
}

.lp-divider {
    border: none;
    border-top: 0.5px solid rgba(0, 0, 0, 0.07);
}

/* ----------------------------------------------------------
   Hunt cards
   ---------------------------------------------------------- */
.lp-card {
    background: #fff;
    border: 0.5px solid var(--lp-border);
    border-radius: var(--lp-radius-card);
}

.lp-hunt-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    padding: 1.25rem;
}

.lp-hunt-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-dark);
}

.lp-hunt-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-hunt-meta span {
    font-size: 12px;
    color: var(--lp-text-sec);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lp-hunt-meta i {
    font-size: 13px;
    color: #b0b0c0;
}

.lp-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #a0a0b0;
    margin-bottom: 4px;
}

.lp-progress-bar {
    height: 4px;
    background: #e8e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.lp-progress-fill {
    height: 100%;
    background: var(--lp-gold);
    border-radius: 2px;
}

.lp-progress-fill.full {
    background: #e24b4a;
}

.btn-lp-dark {
    background: var(--lp-dark);
    border: none;
    border-radius: var(--lp-radius-sm);
    padding: 8px 14px;
    color: var(--lp-gold);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    width: 100%;
    transition: background 0.15s;
    margin-top: auto;
}

.btn-lp-dark:hover {
    background: var(--lp-dark-hover);
    color: var(--lp-gold);
}

.btn-lp-dark.disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* ----------------------------------------------------------
   Feature cards
   ---------------------------------------------------------- */
.lp-feature-card {
    padding: 1.25rem;
    height: 100%;
}

.lp-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--lp-radius-sm);
    background: var(--lp-gold-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.lp-feature-icon i {
    font-size: 18px;
    color: #c09820;
}

.lp-feature-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-dark);
    margin-bottom: 6px;
}

.lp-feature-card p {
    font-size: 13px;
    color: var(--lp-text-sec);
    line-height: 1.55;
    margin: 0;
}

.btn-lp-subtle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--lp-text-sec);
    background: none;
    border: 0.5px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 5px 10px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    margin-top: 12px;
}

.btn-lp-subtle:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--lp-dark);
}

.lp-badge-soon {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    background: #f0f0f0;
    color: #a0a0a8;
    border-radius: 5px;
    padding: 3px 8px;
}

/* ----------------------------------------------------------
   Carousel Glide
   ---------------------------------------------------------- */
.lp-glide-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 52px;
}

.glide__slide {
    display: flex;
    justify-content: center;
}

.lp-hunt-slide {
    background: #fff;
    border: 0.5px solid var(--lp-border);
    border-radius: var(--lp-radius-card);
    padding: 1.5rem;
    text-align: center;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 240px;
}

.lp-hunt-slide h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--lp-dark);
    margin: 0;
}

.lp-hunt-slide .lp-hunt-meta {
    align-items: center;
}

.glide__bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-border);
    border: none;
    margin: 0 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.glide__bullet:hover,
.glide__bullet--active {
    background: var(--lp-gold);
    transform: scale(1.3);
}

.glide__bullets {
    margin-top: 1.25rem;
    text-align: center;
}

.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 0.5px solid var(--lp-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--lp-muted);
    font-size: 16px;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.glide__arrow:hover {
    border-color: var(--lp-gold-border);
    color: #c09820;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.glide__arrow--left {
    left: -50px;
}

.glide__arrow--right {
    right: -50px;
}

@media (max-width: 768px) {
    .glide__arrow {
        display: none;
    }
}
