/* ===========================================
   Onam Countdown - Tool Specific Styles (Saffron/Red and Golden Yellow Theme)
   =========================================== */

/* Tool Layout */
.oc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.oc-display-box {
    background: #4e342e; /* Deep Brown/Maroon Base */
    background-image: linear-gradient(135deg, #f9a825, #ffb300, #ff8f00); /* Gradient of Gold/Yellow to Deep Orange */
    border: 5px solid #d84315; /* Saffron/Deep Orange Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
    color: #4a148c; /* Dark Purple Text for contrast */
}

.oc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff8e1; /* Creamy White */
}

.oc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.oc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.oc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #ffeb3b; /* Bright Yellow Gold Value */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.oc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #fff3e0; /* Light Orange/Cream Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.oc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #d84315; /* Saffron/Red Text */
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .oc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .oc-countdown-grid {
        flex-wrap: wrap;
    }
    .oc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .oc-time-value {
        font-size: 2.2rem;
    }
    .oc-time-unit {
        font-size: 0.8rem;
    }
    .oc-display-box {
        padding: 30px 10px;
    }
}