/* ===========================================
   Kalash Festivals Countdown - Tool Specific Styles (Red, Black, Bronze Theme)
   =========================================== */

/* Tool Layout */
.kfcc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.kfcc-display-box {
    background: #5D0000; /* Deep Red Base (Reflecting traditional dress) */
    background-image: linear-gradient(135deg, #8b0000, #5D0000); /* Dark Red Gradient */
    border: 5px solid #d4af37; /* Bronze/Gold Border (Jewelry and adornments) */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
}

.kfcc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700; /* Gold text for contrast */
}

.kfcc-festival-name {
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    color: #e0e0e0; /* Light Gray/White */
    text-shadow: 1px 1px 2px #000;
}

.kfcc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.kfcc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.kfcc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37; /* Bronze/Gold Value */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kfcc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0; /* Off-White Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.kfcc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #5D0000; /* Deep Red Text */
    background: #d4af37; /* Gold background for pop */
    padding: 10px;
    border-radius: 8px;
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kfcc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .kfcc-festival-name {
        font-size: 1.8rem;
    }
    .kfcc-countdown-grid {
        flex-wrap: wrap;
    }
    .kfcc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .kfcc-time-value {
        font-size: 2.2rem;
    }
    .kfcc-time-unit {
        font-size: 0.8rem;
    }
    .kfcc-display-box {
        padding: 30px 10px;
    }
}