/* Custom styles for MARVELOUS */

/* Calendar content styling */
.calendar-content {
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
}

.calendar-content .date {
    font-weight: bold;
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.calendar-content .holiday {
    color: #e74c3c;
    font-weight: bold;
}

.calendar-content .moon {
    color: #7f8c8d;
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
    display: block;
}

.calendar-content .section-title {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
    color: #4e73df;
    font-size: 1.1em;
}

.calendar-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.calendar-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.calendar-content li:before {
    content: "•";
    color: #4e73df;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 5px;
}

.calendar-content a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.2s ease;
}

.calendar-content a:hover {
    text-decoration: underline;
    color: #2980b9;
}

.calendar-content strong {
    color: #2c3e50;
}

/* Card enhancements */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: none;
}

.card-header h6 {
    color: white !important;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Sidebar styling */
.sidebar-brand {
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.sidebar .nav-item .nav-link {
    padding: 1rem;
    transition: all 0.2s ease;
}

.sidebar .nav-item .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

/* Footer links */
footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: #4e73df !important;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calendar-content .date {
        font-size: 1.1em;
    }
    
    .calendar-content .section-title {
        font-size: 1em;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    color: #fff;
    background: rgba(78, 115, 223, 0.5);
    line-height: 46px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
    color: white;
    background: #4e73df;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.scroll-to-top i {
    font-weight: 800;
}
