@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');
:root { --hijau: #0A6B4A; --footer-h: 3rem; }
.has-fixed-footer { padding-bottom: var(--footer-h); }
.site-footer { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; }
@media (min-width: 768px) {
    :root { --footer-h: 3.5rem; }
}
.hero-bg { 
    background: linear-gradient(rgba(10, 107, 74, 0.88), rgba(10, 107, 74, 0.88)), 
                url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat; 
}
.compass {
    width: 160px;
    height: 160px;
    border: 14px solid #10b981;
    border-radius: 9999px;
    position: relative;
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.25);
}
.compass::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 9999px;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 62px;
    background: linear-gradient(to top, rgba(239, 68, 68, 0.15), #ef4444);
    transform-origin: 50% 100%;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.needle::after {
    content: '▲';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
}
.calendar-day { aspect-ratio: 1/1; }
.today { background-color: #10b981; color: white; font-weight: 700; }
.event-day { background-color: #f59e0b; color: white; position: relative; }
.event-day::after { content: '★'; position: absolute; top: 4px; right: 6px; font-size: 11px; }
.prayer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; flex: 1; }
.prayer-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.75rem 0.5rem; border-radius: 1rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease; min-height: 4.5rem; }
.prayer-item.active { background: rgba(16,185,129,0.35); border-color: #10b981; box-shadow: 0 0 0 2px rgba(16,185,129,0.4); transform: scale(1.03); }
.prayer-item .prayer-name { font-size: 0.7rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.03em; }
.prayer-item .prayer-time { font-size: 1.1rem; font-weight: 700; margin-top: 0.2rem; }
@media (min-width: 768px) {
    .prayer-item { min-height: 5rem; padding: 0.85rem 0.5rem; }
    .prayer-item .prayer-time { font-size: 1.25rem; }
}

.taawun-material-nav {
    margin-top: 2.5rem;
    border: 1px solid #e4e4e7;
    border-radius: 1rem;
    background: #fafafa;
    padding: 1.25rem;
}

.taawun-material-nav__title {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 700;
    color: #27272a;
}

.taawun-material-nav__desc {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #52525b;
}

.taawun-material-nav__list {
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.taawun-material-nav__item {
    display: block;
    padding: 0.625rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    color: #3f3f46;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.taawun-material-nav__item:hover {
    border-color: #6ee7b7;
    color: #047857;
}

.taawun-material-nav__item--active {
    border-color: #34d399;
    background: #d1fae5;
    color: #065f46;
    font-weight: 600;
}

@media (min-width: 768px) {
    .taawun-material-nav {
        padding: 1.5rem;
    }

    .taawun-material-nav__title {
        font-size: 1.25rem;
    }
}

.taawun-content-layout {
    display: grid;
    gap: 1.5rem;
}

.taawun-content-main {
    min-width: 0;
}

.taawun-content-sidebar {
    min-width: 0;
}

@media (min-width: 1024px) {
    .taawun-content-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
        gap: 2rem;
    }

    .taawun-content-sidebar .taawun-material-nav {
        margin-top: 0;
        position: sticky;
        top: 6rem;
    }
}
