/* ============================================
   LEEF 2.0 — Landing Page
   ============================================ */

/* Force no scroll on landing */
.landing-body {
    overflow: hidden;
    height: 100vh;
    margin: 0;
    background-color: var(--color-dark);
}

/* ---- Hero ---- */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Fullscreen background with new image */
    background:
        linear-gradient(rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.6)),
        url('https://leefalive.com/wp-content/uploads/2024/12/IMG_9216-scaled.jpg') center/cover no-repeat;

    /* Fallback in case image fails */
    background-color: #0f0f0f;
}

/* Center block */
.hero__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    z-index: 2;
    text-align: center;
}

.hero__logo-img {
    width: 180px;
    /* Smaller, more subtle logo */
    height: auto;
    filter: brightness(10);
    opacity: 0.9;
}

.hero__tagline {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Wide spacing like reference */
    color: rgba(255, 255, 255, 0.6);
    margin-top: -10px;
}

/* Navbar — Minimal corners */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    /* Let clicks pass through to hero if needed, but links have auto */
}

/* IDK / Brand button (Top Left) */
.navbar__brand-btn {
    pointer-events: auto;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.navbar__brand-btn:hover {
    background: #fff;
    color: #000;
}

/* Shop button (Top Right) */
.navbar__shop-btn {
    pointer-events: auto;
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border-radius: 99px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.navbar__shop-btn:hover {
    transform: scale(1.05);
    background: var(--color-primary);
    /* Gold hover */
}

/* Bottom centered element (optional, similar to reference logo at bottom) */
.hero__bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.hero__bottom:hover {
    opacity: 1;
}

.hero__bottom-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .hero__logo-img {
        width: 140px;
    }
}

/* ============================================
   OVERRIDES (User Feedback) - GLOBAL
   ============================================ */
.email-signup input {
    border-bottom: 2px solid #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.email-signup input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Navbar Shop Button Hover - White */
.navbar__shop-btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: none !important;
    text-decoration: underline !important;
}

/* Navbar Brand - No border/bg */
.navbar__brand-btn {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* FINAL LANDING TWEAKS */
.email-signup input {
    background: rgba(255, 255, 255, 0.1) !important;
    /* Liquid Glass */
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    padding: 10px 15px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    width: 300px !important;
    max-width: 80vw !important;
}

.email-signup input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.navbar__shop-btn {
    transition: transform 0.2s, background 0.2s !important;
}

.navbar__shop-btn:hover {
    background: #fff !important;
    color: #000 !important;
    text-decoration: none !important;
    transform: scale(1.05) !important;
    /* Slight increase */
}