﻿
/* Academic Hero Section */
.academic-hero {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.academic-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.academic-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}
/* Button Navigation */
.academic-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    /* flex-wrap: wrap; */
}

.academic-btn {
    background-color: #a91c1a;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* flex: 3; */
    text-decoration: none;
    min-width: 120px;
}

    .academic-btn:hover {
        background-color: #33b040;
        transform: translateY(-3px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    .academic-btn.active {
        background-color: #ffb303;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }

/* Content Sections */
.academic-content {
    margin-bottom: 80px;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .content-section.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.content-title {
    font-size: 35px;
    color: #a94442;
    margin-bottom: 10px;
    text-align: center;
}

.content-text {
    font-size: 20px;
    line-height: 1.7;
    color: maroon;
    margin-bottom: 10px;
}

.content-list {
    list-style-type: none;
    padding-left: 0;
}

    .content-list li {
        margin-bottom: 10px;
        padding-left: 35px;
        position: relative;
    }

        .content-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 10px;
            color: #a94442;
        }

.table-container {
/*    overflow-x: auto;*/
    /* margin: 30px 0; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.academic-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

    .academic-table th, .academic-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }

    .academic-table th {
        background-color: #f5f5f5;
        color: #a94442;
        font-weight: 600;
    }

    .academic-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .academic-table tr:hover {
        background-color: #f0f0f0;
    }

/* Download Button */
.download-btn {
    display: block;
    margin: 6px auto;
    background-color: #a94442;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    width: fit-content;
}

    .download-btn:hover {
        background-color: #8a3634;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    .download-btn i {
        margin-right: 8px;
    }

/* Calendar Info Section */
.calendar-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #a94442;
}

    .calendar-info h3 {
        color: #a94442;
        margin-bottom: 15px;
    }

.pdf-container {
    text-align: center;
    padding: 1px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .academic-nav {
        gap: 12px;
    }

    .academic-btn {
        padding: 10px 12px;
        font-size: 15px;
        min-width: 110px;
    }
}

@media (max-width: 768px) {

    .academic-hero h1 {
        font-size: 28px;
    }

    .academic-hero p {
        font-size: 16px;
    }

    .academic-nav {
        flex-direction: row;
        gap: 8px;
    }

    .academic-btn {
        padding: 10px 8px;
        font-size: 14px;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .academic-hero {
        height: 250px;
    }

    .content-title {
        font-size: 24px;
    }

    .academic-nav {
        flex-direction: row;
        gap: 6px;
    }

    .academic-btn {
        width: auto;
        padding: 8px 6px;
        font-size: 12px;
        min-width: 70px;
    }

    .academic-table th, .academic-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}


