/* HIVE Page Specific Styles */

/* Page-hive footer overrides (matches page-hejbit) */
.page-hive .mp-footer {
    background: var(--mp-hejbit-bg-dark) !important;
    color: var(--mp-color-white) !important;
}

.page-hive .mp-footer hr {
    border-color: var(--mp-hejbit-yellow) !important;
    border-width: 2px;
    max-width: 80%;
    margin-top: 40px;
    margin-bottom: 48px;
}

.page-hive .mp-footer-title,
.page-hive .mp-footer-nav a,
.page-hive .mp-footer-text {
    color: var(--mp-color-white) !important;
}

.page-hive .mp-footer-social-icon {
    filter: none !important;
    color: var(--mp-color-white) !important;
    fill: var(--mp-color-white) !important;
}

.page-hive .mp-footer-socials a:hover .mp-footer-social-icon {
    filter: brightness(1.2) !important;
    color: var(--mp-hejbit-yellow) !important;
    fill: var(--mp-hejbit-yellow) !important;
}

/* Hive Hero - background image */
.hive-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hive-body .hive-hero-section::before {
    background: linear-gradient(180deg, rgba(12, 22, 47, 0.5) 0%, rgba(12, 22, 47, 0.4) 40%, rgba(12, 22, 47, 0.7) 100%);
}

.hive-logo-text {
    font-family: 'Bauhaus Std', 'Avenir', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--mp-hejbit-yellow);
    letter-spacing: 0.1em;
    margin: 0;
}

.hive-subtitle-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-lg);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* Content blocks */
.hive-content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--mp-color-white);
    line-height: 1.7;
}

.hive-content-block p {
    margin-bottom: 1.25rem;
}

.hive-highlight {
    font-size: var(--font-size-lg);
    color: var(--mp-hejbit-yellow);
    font-weight: 600;
    padding: 1rem 1.5rem;
    background: rgba(255, 225, 0, 0.08);
    border-left: 4px solid var(--mp-hejbit-yellow);
    border-radius: 0 8px 8px 0;
}

.hive-lead {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    line-height: 1.6;
    text-align: center;
}

/* Alternate section background */
.hive-section-alt {
    background: rgba(53, 132, 255, 0.06);
}

/* Feature card icons - scale in sync (img was 70% of 10vw vs FA at 4rem) */
.hive-body .features-section .icon-container {
    width: clamp(64px, 10vw, 96px);
    height: clamp(64px, 10vw, 96px);
}

.hive-body .features-section .icon-container i {
    font-size: clamp(2rem, 5vw, 4rem) !important;
}

.hive-body .features-section .icon-container img {
    width: clamp(2rem, 5vw, 4rem) !important;
    height: clamp(2rem, 5vw, 4rem) !important;
}

/* Tier cards */
.hive-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hive-tier-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.hive-tier-card:hover {
    border-color: rgba(255, 225, 0, 0.4);
    transform: translateY(-2px);
}

.hive-tier-premium {
    border-color: var(--mp-hejbit-yellow);
    background: rgba(255, 225, 0, 0.06);
}

.hive-tier-card h3 {
    color: var(--mp-hejbit-yellow);
    margin-bottom: 0.5rem;
    font-size: var(--font-size-xl);
}

.hive-tier-card h3 i {
    margin-right: 0.5rem;
}

.hive-tier-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
}

.hive-tier-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Summary block */
.hive-summary-block {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hive-summary-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hive-tagline {
    font-size: var(--font-size-xl) !important;
    font-weight: 600;
    color: var(--mp-hejbit-yellow) !important;
}

/* Mobile hamburger for HIVE */
@media (max-width: 600px) {
    .hive-body .hamburger {
        display: block;
    }

    .hive-body .hejbit-nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 22, 47, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        gap: 2rem;
    }

    .hive-body .hejbit-nav-menu.open {
        display: flex;
    }

    .hive-tiers {
        grid-template-columns: 1fr;
    }
}
