/* Minimal University Homepage - Simple & Clean */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 20px;
    text-align: center;
}

.header-container h1 {
    font-size: 2.2em;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1em;
    color: #666;
    font-weight: 300;
}

/* Navigation */
nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

nav li {
    border-right: 1px solid #e0e0e0;
}

nav li:last-child {
    border-right: none;
}

nav a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 16px 20px;
    font-size: 0.95em;
    transition: background-color 0.2s;
}

nav a:hover {
    background-color: #f5f5f5;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hero h2 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #333;
    color: #fff;
}

.btn-primary:hover {
    background-color: #555;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #efefef;
}

/* Quick Links Section */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.link-box h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.link-box p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.link-box a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95em;
}

.link-box a:hover {
    text-decoration: underline;
}

/* News Section */
.news-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.news-section h2 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
}

.news-item {
    margin-bottom: 30px;
}

.news-item .date {
    display: block;
    color: #999;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.news-item h3 {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-item p {
    color: #666;
    line-height: 1.7;
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background-color 0.2s;
    padding: 0;
    margin-left: 0;
}

.news-link:hover {
    background-color: #f9f9f9;
}

.news-link .news-item {
    margin-bottom: 0;
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

/* Programs Section */
.programs {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.programs h2 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.program-card {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.program-card h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card ul {
    list-style: none;
}

.program-card li {
    padding: 6px 0;
    color: #666;
    font-size: 0.95em;
}

/* Footer Info */
.footer-info {
    margin-bottom: 60px;
}

.footer-info h2 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.footer-links li {
    display: block;
}

.footer-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95em;
}

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

/* Footer */
footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
    color: #666;
    font-size: 0.9em;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #0066cc;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container h1 {
        font-size: 1.8em;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    nav li:last-child {
        border-bottom: none;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
