/* ===========================================
   Albuquerque Balloon Fiesta Countdown - Tool Specific Styles (Sky, Sunrise, Adobe Theme)
   =========================================== */

/* Tool Layout */
.aibfc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.aibfc-display-box {
    background: #FF8C00; /* Deep Orange/Sunrise Base */
    background-image: linear-gradient(135deg, #FFC107, #FF8C00); /* Sunrise Gradient */
    border: 5px solid #00BFFF; /* Deep Sky Blue Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
    color: white;
}

.aibfc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333; /* Dark text for contrast against yellow/orange */
    background-color: rgba(255, 255, 255, 0.7); /* Slight white background for date visibility */
    padding: 5px;
    border-radius: 5px;
}

.aibfc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.aibfc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.aibfc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #4B0082; /* Indigo/Purple Value (Dark Sky/Deep Color) */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.aibfc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0; /* Off-White Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.aibfc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    background: #A52A2A; /* Adobe Red/Brown */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aibfc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .aibfc-countdown-grid {
        flex-wrap: wrap;
    }
    .aibfc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .aibfc-time-value {
        font-size: 2.2rem;
    }
    .aibfc-time-unit {
        font-size: 0.8rem;
    }
    .aibfc-display-box {
        padding: 30px 10px;
    }
}