/* Algemene body styling */
body {
    margin: 0;
    padding: 0;
    background-color: #d2c2a6; /* Kraftkleur */
    font-family: 'Roboto', sans-serif; /* Industriële uitstraling */
    color: #2d2d2d;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container */
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* SVG trouwkaart */
.trouwkaart {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: nowrap;
}

.countdown div {
    text-align: center;
}

.countdown span {
    font-size: 36px;
    font-weight: 600;
    color: #2d2d2d;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.1); /* Subtiele industriële diepte */
}

/* Ondertekst bij countdown */
small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #555;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2); /* Ook een subtiele diepte */
}

/* Fade effect bij updaten van cijfers */
.fade {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive verbetering voor kleine schermen */
@media (max-width: 400px) {
    .countdown span {
        font-size: 28px;
    }
    small {
        font-size: 12px;
    }
}