.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
    background-image: url('../images/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    color: white;
    position: relative;
    z-index: 2;
}
.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}
.cta-button {
    padding: 1rem 2.5rem;
    background: var(--highlight);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(233, 69, 96, 0.4);
}
