/* Beehive Page Specific Styles */

.beehive-page {
    --color-accent: #F59E0B;
    --color-primary-dark: #3E6FB2;
}

/* Hero Section - Beehive specific */
.beehive-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.beehive-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.beehive-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.beehive-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    opacity: 1;
    transform: none;
}

.beehive-hero .hero-tagline {
    opacity: 1;
    transform: none;
}

.beehive-hero .hero-buttons {
    opacity: 1;
    transform: none;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-black);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-badge svg {
    color: var(--color-accent);
}

.beehive-hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.beehive-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(0, 200, 83, 0.3);
    z-index: -1;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-graphic {
    position: relative;
    padding: 2rem;
}

/* Screenshot Showcase */
.screenshot-showcase {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.screenshot-frame {
    position: relative;
    background: var(--color-black);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.screenshot-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
    z-index: 2;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Placeholder shown when image is loading or missing */
.screenshot-placeholder {
    position: absolute;
    inset: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    gap: 1rem;
    min-height: 300px;
}

.screenshot-placeholder svg {
    opacity: 0.5;
}

.screenshot-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.5;
}

/* Hide placeholder when image loads successfully */
.screenshot-img:not([src=""]):not([src="{% static 'images/beehive/screenshot-main.png' %}"]) + .screenshot-placeholder {
    display: none;
}

/* Browser-style dots decoration
.screenshot-frame::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 8px;
    height: 8px;
    background: #ff5f57;
    border-radius: 50%;
    box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #28ca41;
    z-index: 3;
} */

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-badge.top-right {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-badge.bottom-left {
    bottom: 0;
    left: 0;
    animation-delay: 1.5s;
}

.floating-badge .number {
    color: var(--color-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Screenshots */
@media (max-width: 991px) {
    .screenshot-showcase {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .screenshot-showcase {
        max-width: 100%;
    }
    
    .screenshot-placeholder {
        min-height: 200px;
    }
    
    .hero-graphic {
        padding: 1rem;
    }
}

/* Stats Strip */
.stats-strip {
    background: var(--color-black);
    padding: 3rem 0;
}

.stats-strip .stat-item {
    text-align: center;
    color: white;
}

.stats-strip .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
}

.stats-strip .stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--color-gray-light);
}

/* What Section */
.what-section {
    padding: 3rem 0;
    background: white;
}

.section-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--color-primary-light);
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-black);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.step-content p {
    color: var(--color-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: var(--color-black);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.why-section .section-label {
    color: var(--color-primary);
}

.why-section .section-title {
    color: white;
}

.why-section .section-text {
    color: rgba(255,255,255,0.7);
}

.why-highlight {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.why-highlight p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--color-primary-light);
}

.beehive-cta {
    background: white;
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.beehive-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.beehive-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.beehive-cta p {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .beehive-hero {
        padding-top: 100px;
        min-height: auto;
        text-align: center;
    }

    .beehive-hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .beehive-hero .hero-tagline {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
    }

    .beehive-hero .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-visual {
        margin-top: 2.5rem;
    }

    .floating-badge {
        display: none;
    }

    .beehive-cta {
        padding: 2.5rem 1.5rem;
    }

    .product-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    /* Features section mobile */
    .features-section,
    .what-section,
    .why-section,
    .cta-section {
        padding: 4rem 0;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .process-step {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stats-strip {
        padding: 2rem 0;
    }

    .stats-strip .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .beehive-hero {
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .beehive-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .beehive-hero .hero-tagline {
        font-size: 1rem;
    }

    .features-section,
    .what-section,
    .why-section,
    .cta-section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .beehive-cta {
        padding: 2rem 1.25rem;
        border-radius: 12px;
    }

    .beehive-cta h2 {
        font-size: 1.35rem;
    }

    .stats-strip .stat-number {
        font-size: 1.75rem;
    }

    .stats-strip .stat-label {
        font-size: 0.8rem;
    }
}