html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow-x: hidden;
    height: 100%;
}

body {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.60));
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 25px;
}

.date {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hour {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.location {
    font-size: 20px;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    padding: 14px 45px;
    border: 1px solid white;
    border-radius: 10px;
    background: none;
    font-family: inherit;
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    margin-top: 25px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: white;
    color: black;
}

.quote {
    margin-top: 50px;
    font-style: italic;
    line-height: 1.7;
    font-size: 15px;
    max-width: 500px;
}

.iban {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.6;
    max-width: 500px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.countdown-item small {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.countdown-label {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
}

.footer {
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 1px;
}


@media (max-width: 480px) {
    h1 { font-size: 32px; }
    .location { font-size: 18px; }
}
