/* ===========================================
   Greenfield Festival Countdown - Tool Specific Styles (Forest Green/Dark Gray Theme)
   =========================================== */

/* Tool Layout */
.gfc-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* --- Display Box --- */
.gfc-display-box {
    background: #1a202c; /* Deep Charcoal/Dark Gray Base */
    background-image: linear-gradient(135deg, #1a202c, #004d40); /* Dark Gray to Forest Green Gradient */
    border: 5px solid #66bb6a; /* Vibrant Green Border */
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
}

.gfc-date-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e8f5e9; /* Off-White/Pale Green */
}

.gfc-countdown-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.gfc-countdown-item {
    text-align: center;
    flex: 1;
    padding: 10px 5px;
}

.gfc-time-value {
    font-size: 4rem;
    font-weight: 900;
    color: #a5d6a7; /* Light Pale Green Value */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gfc-time-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #c8e6c9; /* Light Green Unit */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Festive Message --- */
.gfc-message {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a202c; /* Deep Gray Text */
    background: #66bb6a; /* Vibrant Green background for pop */
    padding: 10px;
    border-radius: 8px;
    display: none; /* Hidden until the countdown hits zero */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gfc-time-value {
        font-size: 3rem;
    }
}
@media (max-width: 500px) {
    .gfc-countdown-grid {
        flex-wrap: wrap;
    }
    .gfc-countdown-item {
        flex: 1 1 45%; /* Two items per row on small screens */
    }
    .gfc-time-value {
        font-size: 2.2rem;
    }
    .gfc-time-unit {
        font-size: 0.8rem;
    }
    .gfc-display-box {
        padding: 30px 10px;
    }
}