.hero {
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url('../assets/svg/hero-background.svg');
    background-repeat: repeat;
    background-size: 512px;
    background-position: center;
    color: var(--text);
}

.hero-content {
    padding: 0 5%;
    max-width: 600px;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 158, 184, 0.2);
}

.media-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: scale(1.07);
    transition: transform 0.5s;
}

.media-card:hover img {
    transform: scale(1.2);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.event-icon {
    height: 150px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon .emoji {
    width: 2.5rem;
    height: 2.5rem;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (max-width: 800px) {
    .hero h1 {
        font-size: 1.75rem;
    }
}