/* ============ HERO SECTION - STEGANOGRAPHY PAGE ONLY ============ */
/* This file should only be loaded on steganography.html */

.hero-visual {
    justify-self: end; /* Align to right side of grid */
    max-width: 500px;
    width: 100%;
}

/* Hero Section - Two Column Layout */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    text-align: left;
    max-width: 1280px; /* Match header-content max-width */
    margin: 0 auto;
    margin-left: 50px;
}
.hero-content {
    flex: 1;
    min-width: 450px;
    max-width: 750px; /* Increased even more */
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: left;
    text-shadow: none;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: left;
    max-width: 100%;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Increased from 20px */
    margin-bottom: 32px;
    justify-content: flex-start;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    white-space: nowrap; /* Prevent wrapping */
}

.hero-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    justify-content: flex-start;
    max-width: 600px; /* Limit button container width */
}

.hero-cta .btn {
    width: 100%;
    white-space: nowrap; /* Prevent text wrapping in buttons */
    text-decoration: none; /* Remove underline */
    display: flex; /* For centering content */
    align-items: center; /* Vertically center */
    justify-content: center; /* Horizontally center */
}

.hero-cta a {
    text-decoration: none; /* Remove underline from links */
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px; /* Increased from 24px */
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-stat {
    text-align: center;
    min-width: 100px; /* Give stats minimum width */
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

/* Container - Make it wider */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Header specific - keep it more compact */
.top-header .header-content {
    max-width: 1400px; /* Narrower than container */
    padding: 0 40px;
}

/* Sections should use full container width */
section {
    width: 100%;
    max-width: none;
}

/* Tool section and cards - full width */
.tool-section,
.learn-section,
.help-section,
.developers-section,
.about-section {
    width: 100%;
    max-width: none;
}

.main-card {
    width: 100%;
    max-width: none;
}

/* Mobile Responsive Overrides */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title,
    .hero-description {
        text-align: center;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    
    .hero-cta {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        min-width: 280px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 12px;
    }

    .hero-cta {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
}