@font-face {
    font-family: 'Ribes';
    src: url('fonts/Ribes-Regular.woff2') format('woff2'),
         url('fonts/Ribes-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Ribes', Georgia, serif;
    font-size: 17px;
    line-height: 1.3;
    color: #7d2b18;
    background: #f9f4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.back-link {
    position: absolute;
    top: 32px;
    left: 32px;
    color: #7d2b18;
    text-decoration: none;
    font-size: 15px;
}

.back-link:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 100px 60px;
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.photo-section {
    flex: 0 0 auto;
    width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.couple-photo {
    width: 100%;
    height: auto;
    display: block;
}

.photo-caption {
    font-size: 11px;
    margin-top: 10px;
    color: #7d2b18;
    line-height: 1.3;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.photo-caption a {
    color: #7d2b18;
    text-decoration: underline;
}

.details-section {
    flex: 1;
    max-width: 486px;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.details-content {
    flex: 1;
}

.details-content p {
    margin-bottom: 18px;
}

.info-list {
    margin-bottom: 18px;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 6px;
}

.headline {
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 18px;
}

.emphasis {
    font-weight: 700;
    -webkit-text-stroke: 0.5px #7d2b18;
}

.details-section a {
    color: #7d2b18;
    text-decoration: underline;
}

.details-section a:hover {
    text-decoration: none;
}

.rsvp-section {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-bottom: 0;
}

.rsvp-button {
    display: inline-block;
    background: #7d2b18;
    color: #f9f4ec !important;
    padding: 10px 28px;
    text-decoration: none !important;
    font-family: 'Ribes', Georgia, serif;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.rsvp-button:hover {
    background: #5a1f11;
}

.deadline {
    font-size: 12px;
    color: #7d2b18;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .back-link {
        top: 20px;
        left: 20px;
        font-size: 14px;
    }
    
    .container {
        flex-direction: column;
        padding: 70px 20px 60px 20px;
        gap: 24px;
        align-items: flex-start;
    }
    
    .photo-section {
        width: 65%;
        max-width: 280px;
    }
    
    .photo-caption {
        position: relative;
        top: auto;
    }
    
    .details-section {
        max-width: 100%;
        padding-top: 0;
    }
    
    .headline {
        font-size: 1.1em;
    }
    
    .rsvp-section {
        margin-top: 32px;
    }
}
