/* Wedding Save the Date - Clean & Structured CSS */

/* ===== RESET & BASE STYLES ===== */
html, body, div, section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: #8B7355;
}

/* ===== MAIN LAYOUT ===== */
.wedding-hero {
    height: 100vh; /* Fallback */
    height: 100dvh; /* modernes Verhalten auf Mobile */
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}


.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F1EBD8;
    z-index: 0;
}

/* Transparentes Bild-Overlay */
.gradient-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

@keyframes beigeFlow {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 100% 0%;
    }
    66% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.wedding-container {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100vh; /* Fallback */
    min-height: 100dvh; /* modernes Verhalten */
    align-items: stretch;
    z-index: 10;
}

.wedding-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 100vh; /* Fallback */
    min-height: 100dvh; /* modernes Verhalten */
    padding: 2rem 0;
}


/* ===== TYPOGRAPHY - STANDARD TEXT ===== */
.greeting-text,
.guest-names,
.wedding-date,
.wedding-location {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    color: #8B7355;
    font-family: 'Jost', sans-serif;
}

.more-info-text {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.16px;
    text-transform: uppercase;
    color: #8B7355;
    font-family: 'Jost', sans-serif;
}


.greeting-text {
    margin-bottom: 8px;
}

.guest-names {
    margin-bottom: 8px;
    opacity: 0.8;
}

.wedding-date {
    margin-bottom: 8px;
}

.wedding-location {
    margin-bottom: 16px;
}

.more-info-text {
    margin-bottom: 32px;
    opacity: 0.7;
}

/* ===== TYPOGRAPHY - NAMES (LARGE) ===== */
.bride-name,
.groom-name {
    font-size: clamp(5rem, 18vw, 5rem);
    font-weight: 400;
    color: #8B7355;
    font-family: 'WindSong', cursive;
    margin-bottom: 6px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
    line-height: 0.9;
}

.name-separator {
    font-size: clamp(2rem, 10vw, 2rem);
    font-weight: 400;
    color: #8B7355;
    font-family: 'WindSong', cursive;
    margin: 0px 30px 0 175px;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
    opacity: 1;
}

/* ===== 3-SECTION LAYOUT ===== */
.section-greeting {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}

.section-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
    gap: 2rem;
}

.section-button {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}

/* ===== LAYOUT SPACING ===== */
.greeting {
    text-align: center;
}

.names-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.details-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.divider-line {
    width: 100px;
    height: 1px;
    background: #8B7355;
    margin: 1rem 0;
}

/* ===== SAVE THE DATE BUTTON ===== */
.save-the-date-btn {
    color: #8B7355;
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    margin: 0 auto;
}

.save-the-date-btn:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 16px;
}



/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    /* Sanftere Mobile-Anpassung - schöne Abstände bleiben */
    .wedding-content {
        padding: 1.5rem 0; /* Nur leicht weniger Padding */
    }
    
    .section-greeting,
    .section-main,
    .section-button {
        padding: 0 30px; /* Original-Padding beibehalten */
    }
    
    .section-main {
        gap: 1.8rem; /* Nur minimal weniger Gap */
    }
}