/* Sekcja Hero */
.hero {
    background-image: url(/images/pampas.jpg);
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    color: #ffffff; /* Tekst biały */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(120, 114, 114, 0.526);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}