.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.cta-button {
    background-color: #FF6A00;
    color: white;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e55b00;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

