﻿body {
}
#countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    font-family: 'Cormorant Garamond', serif;
}

.count-item {
    text-align: center;
}

.count-item span {
    font-size: 48px;
    font-weight: 600;
    color: #d4af37;
}

.count-item p {
    margin: 0;
    margin-top: 6px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #333;
}

.countdown-heading {
    margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #333;
}

#countdown-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    color: #2f2f2f;
    letter-spacing: 1px;
    line-height: 1.3;
}

    #countdown-title::after {
        content: "";
        display: block;
        width: 140px;
        height: 1px;
        background-color: #d4af37; /* złoto */
        margin: 12px auto 0 auto;
        opacity: 0.5;
    }
