/* css/components/timer.css */

.timer-section {
    background: linear-gradient(135deg, #5e4b3c, #4a3a2e);
    padding: 3rem 2rem;
    border-radius: 48px;
    color: var(--white-soft);
    text-align: center;
    margin: 3rem 0 0 0;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-title {
    font-family: var(--script-main);
    font-size: 2.2rem;
    color: var(--powder-rose);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.2rem;
    border-radius: 32px;
    min-width: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.timer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--powder-rose);
}

.timer-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--white-soft);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timer-label {
    font-family: var(--script-secondary);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 2px;
    color: var(--powder-rose);
}

@media (max-width: 600px) {
    .timer-section {
        padding: 2rem 1.5rem;
    }
    
    .timer-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .timer {
        gap: 12px;
    }
    
    .timer-item {
        min-width: 70px;
        padding: 1rem 0.8rem;
    }
    
    .timer-number {
        font-size: 1.8rem;
    }
    
    .timer-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .timer-item {
        min-width: 65px;
        padding: 0.8rem 0.5rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
}