.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                      url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 76px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Didot', serif;
    font-size: 48px;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Avenir Next', sans-serif;
    font-size: 20px;
    color: white;
    margin: 0;
    max-width: 600px;
    width: 100%;
    font-weight: normal;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
        margin-top: 60px;
    }

    .hero-content {
        padding: 2rem;
        width: 92%;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        padding: 1.5rem;
        width: 95%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0;
    }
}
