@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Amiri:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(135deg, #071a15 0%, #112d26 100%);
    color: #e2e8f0;
    min-height: 100vh;
}

/* --- THE HERO SECTION --- */
.hero {
    text-align: center;
    padding: 40px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

#bismillah {
    font-family: 'Amiri', serif; /* Traditional Arabic Font */
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

#date-info {
    margin-bottom: 25px;
}

#gregorian-date, #hijri-date {
    color: #8da399;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

#ramadan-day {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#location-text {
    color: #d4af37;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#countdown-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
}
/* --- THE LOCATION BADGE --- */
.location-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.08); /* Frosted gold background */
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 50px; /* Makes it a pill shape */
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- THE TIMETABLE --- */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 10px;
}

/* Adjusted for 6 columns */
.timetable-header, .day-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
    align-items: center;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.timetable-header {
    color: #8da399;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.day-row {
    font-size: 0.85rem; /* Smaller font to fit 6 times */
    font-weight: 300;
    opacity: 0;
}

/* Highlight specifically for Fajr and Maghrib columns */
.highlight-time, .highlight-header {
    color: #d4af37;
    font-weight: 600;
}

/* --- ANIMATIONS --- */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.day-row {
    animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes subtlePulse {
    0% { box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.02); }
    50% { box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.15); }
    100% { box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.02); }
}

.today-highlight {
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid #d4af37;
    border-radius: 6px;
    border-bottom: none;
    animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, subtlePulse 3s infinite;
/* --- THE CAUTION BANNER --- */
.caution-banner {
    background: rgba(212, 175, 55, 0.05); /* Very subtle gold tint */
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 25px;
    color: #8da399;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.5px;
}

.caution-banner strong {
    color: #d4af37;
    font-weight: 600;
}
/* --- HERO SIDE-BY-SIDE LAYOUT --- */
.hero-times-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-label {
    font-size: 0.9rem;
    color: #8da399;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4af37;
}

/* The vertical line between the times */
.time-divider {
    width: 2px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
}

/* --- THE GLOWING EFFECT --- */
@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
    50% { text-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
    100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
}

.glow-text {
    animation: textGlow 3s infinite alternate;
}
}