/* Tech Fest Specific Styles */

/* Sub Hero adjustments for event pages */
.sub-hero {
    min-height: 60vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 4rem;
}

.sub-hero .hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
}

/* Event Cards Grid for Subpages */
.sub-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.event-icon-large {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    background: rgba(255, 0, 60, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 60, 0.2);
}

.event-card.glass-card .card-content {
    align-items: flex-start;
    text-align: left;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta i {
    color: var(--accent-neon);
}

.primary-btn.sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
}

@media (max-width: 768px) {
    .sub-events-grid {
        grid-template-columns: 1fr;
    }

    .sub-hero {
        min-height: 50vh;
        padding-top: 6rem;
    }
}