/* navratri/css/style.css */
:root {
    --primary: #FF7B00;
}
body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .hub-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
}
.day-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.completed-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #10b981;
    font-size: 1.2rem;
    display: none;
}
.day-card.completed .completed-check {
    display: block;
}
.day-card.completed {
    border-color: #10b981;
}
.day-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    overflow: hidden;
    border: 3px solid #eee;
}
.day-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add animation class for expand and collapse */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
