/* Resources Page Styles */

.resources-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    background-color: #f8f9fa;
}

.resources-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 30px;
}

/* Calendar Section */
.calendar-section {
    margin-bottom: 40px;
}

.calendar-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.styled-calendar-container {
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Resources Accordion */
#accordion {
    margin-top: 30px;
}

#accordion h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 0 5px 0;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#accordion h3:hover {
    background: #7a0b16;
    color: #ffffff;
    border-color: #7a0b16;
}

#accordion h3.ui-state-active {
    background: #7a0b16;
    color: #ffffff;
    border-color: #7a0b16;
}

#accordion .ui-accordion-content {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #ffffff;
}

#accordion ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#accordion li {
    margin-bottom: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#accordion li:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

#accordion li a {
    color: #7a0b16;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

#accordion li a:hover {
    color: #55080f;
    text-decoration: underline;
}

/* PDF Download Section */
.pdf-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.pdf-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.pdf-download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #7a0b16, #55080f);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 11, 22, 0.3);
}

.pdf-download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 11, 22, 0.4);
    background: linear-gradient(135deg, #55080f, #7a0b16);
}

.pdf-download-link::after {
    content: "↓";
    font-size: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .resources-content {
        padding: 30px 4%;
    }
    
    .resources-container {
        padding: 25px 20px;
    }
    
    .calendar-section h2 {
        font-size: 24px;
    }
    
    .styled-calendar-container {
        min-height: 500px;
    }
    
    #accordion h3 {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .pdf-section {
        padding: 20px;
    }
    
    .pdf-section h3 {
        font-size: 20px;
    }
    
    .pdf-download-link {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .resources-content {
        padding: 20px 3%;
    }
    
    .resources-container {
        padding: 20px 15px;
    }
    
    .calendar-section h2 {
        font-size: 20px;
    }
    
    .styled-calendar-container {
        min-height: 400px;
    }
    
    #accordion h3 {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    #accordion .ui-accordion-content {
        padding: 15px;
    }
    
    #accordion li {
        padding: 10px 12px;
    }
    
    #accordion li a {
        font-size: 14px;
    }
    
    .pdf-section {
        padding: 15px;
    }
    
    .pdf-section h3 {
        font-size: 18px;
    }
    
    .pdf-download-link {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}



