/* Hero Section Layout */
.hero {
    height: calc(100vh - var(--top-bar-height));
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: var(--top-bar-height);
    padding: 0 1rem;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}