/* Header / Hero Section */
.wedding-header {
    position: relative;
    padding: 90px 0 70px;
    text-align: center;
    color: #000000; /* switched from light to dark since background no overlay */
    background: url('/images/weddingVenue.jpg') center/cover no-repeat;
    border-bottom: 2px solid #447246;
}

.wedding-header::after { /* subtle white overlay for readability */
    content: '';
    position: absolute;
    inset: 0;
}

.wedding-header .container {
    width: fit-content;
    padding: 20px;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    background: rgba(0,0,0,0.35); /* semi-transparent overlay */
    color: #fff; /* ensure text full opacity and readable */
    backdrop-filter: blur(2px); /* subtle blur for elegance */
}

.wedding-header .couple-names {
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: .5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.wedding-header .wedding-date {
    font-size: 1.5rem;
    margin: 0 0 .25rem;
    font-weight: 700;
}

.wedding-header .wedding-venue {
    font-size: 1.15rem;
    margin: 0 0 .25rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .wedding-header {
        padding: 70px 0 55px;
    }

    .wedding-header .couple-names {
        font-size: 2.2rem;
    }
}
