/* Home / Landing Page */

/* Fixed navbar scroll offset */
body {
    padding-top: 50px;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

.features-section,
.systems-section,
.additional-features-section,
.community-section,
.cta-section {
    scroll-margin-top: 100px;
}

/* Hero layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/homepage/hero-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-title .subtitle {
    display: block;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-number {
    display: block;
}

.stat-label {
    display: block;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

/* Community features layout */
.community-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.community-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* 3D Viewer (Test page) */
.viewer {
    width: 20vw;
    height: 20vh;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}
