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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fcf9f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;
}

.content {
    background: white;
    padding: 40px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.title {
    font-size: 3em;
    /* color: #2c2c2c; */
    color: #888;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.couple-names {
    margin-bottom: 15px;
}

.couple-names p {
    font-size: 2em;
    /* color: #888; */
    color: #2c2c2c;
    font-weight: 500;
}

.details {
    display: flex;
    flex-direction: column;

}

.detail {
    margin: 12px 0;
}

.label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.value {
    font-size: 1.5em;
    color: #2c2c2c;
    font-weight: 300;
}

.subtext {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
    margin-top: 5px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 15px auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: block;
}

.registry-section {
    margin: 15px 0 8px 0;
}

.registry-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.registry-link:hover {
    background-color: #555;
}

.message {
    font-family: 'Playfair Display', serif;
    margin-top: 8px;
    font-size: 1.1em;
    color: #888;
    font-style: italic;
}

@media (max-width: 600px) {
    .content {
        padding: 40px 20px;
    }

    .title {
        font-size: 1.5em;
    }

    .couple-names p {
        font-size: 1.3em;
    }

    .label {
        font-size: 1.3em;
    }

    .value {
        font-size: 1.3em;
    }
}
