/* Styles extracted from pages/land.html */

.month-navigator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}
.month-navigator button {
    background: #e63946;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.month-navigator button:hover {
    background: #d62828;
    transform: translateY(-1px);
}
.month-display {
    text-align: center;
    min-width: 180px;
}
.month-display .month-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1d3557;
    font-family: 'Poppins', sans-serif;
}
.month-navigator .today-btn {
    background: #2a9d8f;
    font-size: 0.85rem;
    padding: 8px 14px;
}
.month-navigator .today-btn:hover {
    background: #248277;
}
.favorites-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 2px solid #e63946;
    border-radius: 8px;
    background: white;
    color: #e63946;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.favorites-toggle:hover {
    background: #fff5f5;
    transform: translateY(-1px);
}
.favorites-toggle.active {
    background: #e63946;
    color: white;
}
.favorites-toggle .fire-icon {
    font-size: 1rem;
}

/* Home links grid */
.home-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 18px 0 28px;
}
.home-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.home-card h3 {
    margin-bottom: 8px;
    color: #1d3557;
    font-size: 1.05rem;
}
.home-card p { color: #586069; font-size: 0.95rem; }

/* Welcome / landing adjustments */
.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 1100px;
    margin: 18px auto;
    padding: 12px;
}
.home-brand { display:flex; align-items:center; gap:16px; }
.home-logo { width:120px; height:auto; display:block; }
.welcome-section p { max-width: 760px; }

/* Constrain the links grid to the right width and center it */
.home-links-wrap { width:100%; max-width:980px; margin: 8px auto 28px; }

@media (min-width: 980px) {
    .welcome-section { grid-template-columns: 1fr 420px; }
}
