/* ===== NSB WEBSITE - ADMISSION TABS SECTION CSS ===== */
/* File: /css/sections/admission/admission-tabs-section.css */
/* Purpose: Styles for admission tabs section */
/* Dependencies: main.css (for variables) */
/* Last Updated: [CURRENT_DATE] */

/* ===== ADMISSION TABS SECTION STYLES START ===== */

/* ===== TABS CONTAINER STYLES ===== */
.admission-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ===== DESKTOP TABS ===== */
.tabs-navigation-desktop {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabs-nav-list {
    display: flex;
    background: var(--nsb-light);
    border-radius: 50px;
    padding: 0.5rem;
    gap: 0.5rem;
}

.tab-nav-item {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    border-radius: 40px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--nsb-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: var(--font-weight-medium);
}

.tab-nav-item:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--nsb-primary);
}

.tab-nav-item.active {
    background: var(--nsb-white);
    color: var(--nsb-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: var(--font-weight-semi-bold);
}

/* ===== MOBILE DROPDOWN ===== */
.tabs-navigation-mobile {
    display: none;
    margin-bottom: 2rem;
}

.tabs-dropdown {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--nsb-primary);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--nsb-white);
    color: var(--nsb-primary);
    cursor: pointer;
}

.tabs-dropdown:focus {
    outline: 2px solid var(--nsb-accent);
    outline-offset: 2px;
}

/* ===== TAB CONTENT ===== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Reduce padding for sections inside tabs */
.tab-content .section-spacing {
    padding: 3rem 0;
}

.tab-content .section-header {
    margin-bottom: 2.5rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .tabs-navigation-desktop {
        display: none;
    }
    
    .tabs-navigation-mobile {
        display: block;
    }
    
    .tab-content .section-spacing {
        padding: 2rem 0;
    }
    
    .admission-tabs-container {
        padding: 1rem;
    }
    
    .tab-content .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .tabs-dropdown {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .tab-content .section-spacing {
        padding: 1.5rem 0;
    }
}
/* ===== ADMISSION TABS SECTION STYLES END ===== */