* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", serif;
    background: #171615;
    color: #29251f;
}

.page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 16px;

    background:
        linear-gradient(
            rgba(15, 13, 12, 0.72),
            rgba(15, 13, 12, 0.72)
        ),
        url("images/ticket.jpeg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.invitation-card {
    width: min(100%, 620px);

    background: #f7f3ea;

    text-align: center;

    padding: 60px 45px;

    position: relative;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

/* Outer gold border */

.invitation-card::before {
    content: "";

    position: absolute;

    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;

    border: 1px solid #b8a06a;

    pointer-events: none;
}

/* Inner gold border */

.invitation-card::after {
    content: "";

    position: absolute;

    top: 22px;
    right: 22px;
    bottom: 22px;
    left: 22px;

    border: 1px solid #d8c99f;

    pointer-events: none;
}

.eyebrow {
    margin: 0 0 15px;

    font-size: 0.72rem;

    letter-spacing: 0.18em;

    color: #6e6047;
}

h1 {
    margin: 0;

    font-size: clamp(2.7rem, 8vw, 4.5rem);

    font-weight: 500;
}

.event-title {
    margin-top: 10px;

    font-size: 1.1rem;

    font-style: italic;

    color: #625b51;
}

.line {
    width: 70px;
    height: 1px;

    background: #b8a06a;

    margin: 28px auto;
}

.message {
    max-width: 470px;

    margin: 0 auto;

    line-height: 1.8;

    color: #4c4842;
}

.event-details {
    margin: 30px 0 20px;

    line-height: 1.7;
}

.event-details p {
    margin: 5px 0;
}

.dress-code {
    margin-bottom: 30px;

    color: #4c4842;
}

.download-button {
    display: inline-block;

    padding: 14px 28px;

    background: #29251f;

    color: white;

    text-decoration: none;

    letter-spacing: 0.04em;

    transition: 0.2s ease;
}

.download-button:hover {
    transform: translateY(-2px);

    opacity: 0.9;
}

.rsvp {
    margin-top: 22px;

    font-size: 0.8rem;

    color: #777066;
}

/* Mobile */

@media (max-width: 520px) {

    .invitation-card {
        padding: 50px 25px;
    }

    .invitation-card::before {
        top: 11px;
        right: 11px;
        bottom: 11px;
        left: 11px;
    }

    .invitation-card::after {
        top: 16px;
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .message {
        font-size: 0.94rem;
    }
}