* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: #fcf9f5;
    color: #C15D26;
    overflow: hidden;
    /* 1. Force absolutely no scrollbars */
    height: 100svh;
    /* 2. Lock the body height to 100% of the screen height */
}

#invitation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    min-height: 100svh;
}

.invitation-container {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.invitation-container h1,
.invitation-container h2,
.invitation-container h3,
.married,
.date {
    text-transform: uppercase;
}

/* Row 1 */
.row-1 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.row-1 h1 {
    font-size: clamp(2.5rem, min(16vw, 12vh), 10rem);
    line-height: 1;
    font-weight: 400;
}

.ampersand {
    font-family: 'Bodoni 72 Oldstyle', Bodoni, Didot, serif;
}

/* Row 2 */
.row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.please-save-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-right: 10%;
    /* Center it roughly under 'BARBA' */
}

.please-save {
    font-size: clamp(0.8rem, min(3.5vw, 3vh), 2.2rem);
    line-height: 1.2;
    color: #C15D26;
    text-align: center;
}

.row-2 h2 {
    font-size: clamp(2.5rem, min(16vw, 12vh), 10rem);
    line-height: 0.9;
    font-weight: 400;
    text-align: right;
}

/* Row 3 */
.row-3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.row-3 .are {
    font-size: clamp(2rem, min(10vw, 8vh), 6.5rem);
    line-height: 1;
    padding-left: 10%;
}

.row-3 .getting {
    font-size: clamp(2.5rem, min(15vw, 12vh), 8.5rem);
    line-height: 1;
    font-weight: 400;
    text-align: right;
}

/* Row 4 (MARRIED) */
.row-4 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.married {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(2.5rem, min(18.5vw, 14vh), 11rem);
    line-height: 1;
    font-weight: 400;
}

/* Row Location */
.row-location {
    display: flex;
    justify-content: center;
}

.row-location .location {
    font-size: clamp(0.8rem, min(3.5vw, 3vh), 2.2rem);
    text-align: center;
}

/* Row 5 (DATE) */
.row-5 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.date {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(2.5rem, min(15vw, 12vh), 9rem);
    line-height: 1;
    font-weight: 400;
    font-variant-numeric: lining-nums;
}

/* Footer Row */
.footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: max(2vh, 10px);
}

.flower-icon {
    width: clamp(50px, min(15vw, 10vh), 150px);
    height: auto;
}

.flower-icon-img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.calendar-btn {
    background-color: transparent;
    border: 2px solid #C15D26;
    color: #C15D26;
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.8rem, min(3vw, 2vh), 1.2rem);
    padding: min(2vh, 15px) min(4vw, 40px);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-btn:hover {
    background-color: #C15D26;
    color: #fcf9f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 93, 38, 0.2);
}

/* Responsive Overrides */
@media (max-width: 600px) {
    .footer-row {
        gap: 15px;
    }
}