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

.countdown-section {
    height: 75vh;
    background: url('../img/christmas\ banner.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 100%;
    height: 100%;
    gap: 1rem;
}

.overlay h1 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    max-width: 50%;

}

.overlay p {
    max-width: 50%;
    text-align: center;
}

.overlay a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    color: #DD9854;
    border-radius: 2px;
    text-decoration: none;
    border: 1px solid #DD9854;
}

#countdown {
    font-size: 2rem;
    font-weight: bolder;
}

.poster-gallery {
    padding: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.poster-gallery h2 {
    color: #DD9854;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.poster-gallery a {
    background-color: #008000;
    border: 1px solid #008000;
    width: 15%;
    color: #fff;
    padding: 0.5em;
    border-radius: 2px;
    text-decoration: none;
}
