/* Styles pour l'en-tête du site */
.site-header {
    padding: 1.5rem 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 101;
}

.header-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Styles pour le compte à rebours */
.countdown-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.countdown-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto;
    max-width: 800px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

/* Media Queries pour la réactivité */
@media (min-width: 576px) {
    .header-image {
        width: 200px;
        height: 200px;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.25rem;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        text-align: left;
    }
    
    .header-image {
        margin-right: 2rem;
        margin-bottom: 0;
        width: 220px;
        height: 220px;
    }
    
    .header-content {
        flex: 1;
    }
    
    .header-title {
        font-size: 2.8rem;
    }
    
    .countdown-item {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    .header-image {
        width: 250px;
        height: 250px;
    }
    
    .header-title {
        font-size: 3rem;
    }
    
    .countdown-item {
        min-width: 140px;
    }
}
