:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gray: #95a5a6;
    --success: #27ae60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    display: grid;
    grid-template-areas:
        "header header header"
        "nav main sidebar"
        "footer footer footer";
    grid-template-columns: 200px 1fr 250px;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

header {
    grid-area: header;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    margin-right: 30px;
}
.logo-text {
    text-align: center; /* This will center all text inside the container */
}
.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 1rem;
    opacity: 0.9;
}

nav {
    grid-area: nav;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    display: block;
    padding: 10px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    background-color: var(--secondary);
    color: white;
}

.nav-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

main {
    grid-area: main;
    display: grid;
    gap: 20px;
    grid-template-rows: auto auto auto;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light);
}

.news-item, .resource-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.news-item:last-child, .resource-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-item h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--primary);
}

.btn-accent {
    background-color: var(--accent);
}

.btn-accent:hover {
    background-color: #c0392b;
}

aside {
    grid-area: sidebar;
    display: grid;
    gap: 20px;
    grid-template-rows: auto auto;
}

.quick-links .links {
    display: grid;
    gap: 10px;
}

.quick-links a {
    display: block;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.quick-links a:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateX(5px);
}

footer {
    grid-area: footer;
    background: var(--dark);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.poc-card {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.poc-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--secondary);
}

.poc-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.poc-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .container {
        grid-template-areas:
            "header header header"
            "nav nav nav"
            "main main main"
            "sidebar sidebar sidebar"
            "footer footer footer";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto auto;
    }
    
    nav {
        margin-bottom: 0;
    }
    
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-menu a {
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    
    .logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
}









/* Faculty Page Specific Styles */
/* Faculty Page Specific Styles */
/* Faculty Page Specific Styles */
.faculty-grid {
    display: grid;
    gap: 30px;
}

.faculty-section {
    margin-bottom: 30px;
}

.faculty-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--light);
}

.faculty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.faculty-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--secondary);
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faculty-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.faculty-info {
    padding: 15px;
    flex: 1;
}

.faculty-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.faculty-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.faculty-contact {
    margin: 10px 0;
    font-size: 0.85rem;
}

.faculty-contact i {
    width: 20px;
    color: var(--secondary);
}

.subtitle {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .faculty-cards {
        grid-template-columns: 1fr;
    }
    
    .faculty-card {
        flex-direction: column;
    }
    
    .faculty-card img {
        width: 100%;
        height: 150px;
    }
}









/* Programs of Study Styles */
.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.highlight-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary);
}

.highlight-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.highlight-card h3 i {
    margin-right: 10px;
    color: var(--secondary);
}

.enrollment-stats {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.year-stat {
    text-align: center;
    flex: 1;
}

.year-stat .year {
    font-size: 0.9rem;
    color: var(--gray);
}

.year-stat .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.year-stat.current .number {
    color: var(--accent);
}

.employer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.logo-item {
    background: var(--light);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.aacsb-logo {
    max-width: 150px;
    margin: 10px 0;
}

.ku-list {
    list-style-type: none;
    margin: 15px 0;
    padding-left: 0;
}

.ku-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.ku-list li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.course-card {
    background: white;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--secondary);
}

.course-card h5 {
    color: var(--primary);
    margin-bottom: 5px;
}

.course-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.certifications {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.cert-badge {
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.deadline-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.deadline-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .program-highlights {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr 1fr;
    }
}












/* News Page Styles */
.news-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active-tab {
    display: block;
}

.news-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.winner-card {
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid var(--secondary);
}

.winner-card h5 {
    color: var(--primary);
    margin-bottom: 5px;
}

.placement {
    font-weight: bold;
    color: var(--accent);
    margin: 5px 0;
}

.winner-names {
    font-size: 0.9rem;
}

.event-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-date {
        margin-top: 5px;
    }
    
    .winners-grid {
        grid-template-columns: 1fr;
    }
}
/* Faculty Spotlight Styles */
.spotlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid var(--secondary);
}

.spotlight-expert {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spotlight-expert img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary);
}

.spotlight-expert h5 {
    color: var(--primary);
    margin-bottom: 5px;
}

.expert-title {
    color: var(--gray);
    font-size: 0.9rem;
}

.expert-quote {
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.expert-quote blockquote {
    margin: 0;
    font-style: italic;
    color: var(--dark);
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
    margin-top: 10px;
}

.expert-advice {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.expert-advice h5 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.expert-advice h5 i {
    margin-right: 10px;
    color: var(--accent);
}

.expert-advice ul {
    list-style-type: none;
    padding-left: 0;
}

.expert-advice li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.expert-advice li:before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .spotlight-expert {
        flex-direction: column;
        text-align: center;
    }
    
    .spotlight-expert img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}