body {
    background-color: #fdfcf0; /* Off-white / Parchment */
    color: #1a1a1a; /* Deep charcoal */
    font-family: "Playfair Display", serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    mix-blend-mode: multiply; /* Makes the white background of the logo transparent on the off-white page */
    /*filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));*/
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: #800000; /* Cardinal Red */
}

.description {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 2.5rem auto;
    width: 60%;
}

.sub-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

input[type="email"] {
    background: #fff;
    border: 1px solid #d4af37;
    color: #1a1a1a;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-family: "Playfair Display", serif;
    width: 250px;
}

button {
    background: #800000; /* Cardinal Red */
    color: #fdfcf0;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    cursor: pointer;
    transition:
        background 0.3s,
        transform 0.2s;
}

button:hover {
    background: #600000;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .description {
        font-size: 1.2rem;
    }
}
