/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* Initial padding before header height consideration in .page-content */
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/homepage.jpg');
    background-size: cover;
    background-position: center 23%;
    background-repeat: no-repeat;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-names {
    font-family: var(--font-heading);
    font-size: 3em;
    font-weight: 700;
    margin: 0.2em 0;
    color: #fff;
    letter-spacing: 0.05em;
}

.hero-names .ampersand {
    font-family: var(--font-accent);
    font-size: 1.2em;
    color: var(--accent-gold);
}

.hero-date {
    font-family: var(--font-body);
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0.5em 0;
    color: #f0f0f0;
}

.hero-wedding-date, .hero-location {
    font-family: var(--font-heading);
    font-size: 1.4em;
    font-weight: 500;
    margin: 0.3em 0;
    color: #fff;
}

/* --- Welcome Intro Section --- */
.welcome-intro {
    padding: 4em 2em;
    text-align: center;
    background-color: var(--neutral-light);
}

.welcome-intro p {
    font-family: var(--font-accent);
    font-size: 1.8em;
    color: var(--primary-green);
    max-width: 700px;
    margin: 0 auto;
}