/* Subpage Specific Styles */
.subpage {
    background-color: var(--bg-dark);
}

.sub-hero {
    padding: 300px 0 100px;
    /* Adjusted for huge logo */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), var(--bg-dark)), url('../assets/img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.sub-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.sub-content {
    padding: 6rem 0;
}

.text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.text-side h3 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.text-side p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.check-list li i {
    color: var(--primary);
    width: 20px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin-top: 2rem;
}

.feature-tags li {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--primary);
}

.subpage-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.subpage-cta p {
    font-weight: 700;
    margin-bottom: 2rem !important;
    font-size: 1.2rem !important;
}

.image-side img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.tech-card {
    background: var(--bg-surface);
    border: 1px solid var(--primary);
    padding: 2.5rem;
    margin-top: 2rem;
    position: relative;
}

.tech-card strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .sub-hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}