/* Dartmouth College Map Overview - Clean Website Styles */

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

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #00693e 0%, #00876e 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

header nav {
    margin-top: 1rem;
}

header nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

header nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

nav a {
    color: #00693e;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

nav a:hover {
    background-color: #00693e;
    color: white;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

h2 {
    color: #00693e;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
}

h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Help Section */
.help-section {
    background-color: #f0f8f0;
    border-left: 4px solid #00693e;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

/* Navigation Buttons */
.navigation-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nav-button {
    display: block;
    background: linear-gradient(135deg, #00876e 0%, #00a085 100%);
    color: white;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0,135,110,0.2);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,135,110,0.3);
}

.nav-button h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: white;
}

.nav-button p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* External Links */
.external-links {
    text-align: center;
    margin-top: 2rem;
}

.external-link {
    display: inline-block;
    background-color: #f2f4fc;
    color: #00693e;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid #e0e4f0;
    font-weight: 500;
    transition: all 0.3s;
}

.external-link:hover {
    background-color: #00693e;
    color: white;
    border-color: #00693e;
}

/* Office Grid */
.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.office-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.office-item h3 {
    color: #00693e;
    margin-bottom: 1rem;
}

.office-link {
    display: inline-block;
    background: #00693e;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.office-link:hover {
    background: #005a3a;
    transform: translateY(-1px);
}

/* Content Sections */
.schedule-content,
.interview-content,
.poster-content {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .navigation-buttons {
        grid-template-columns: 1fr;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 1rem;
    }

    section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    header {
        padding: 1.5rem 0;
    }

    header h1 {
        font-size: 1.8rem;
    }
}

/* Animation for interactive elements */
.nav-button,
.office-link,
.external-link {
    cursor: pointer;
}

/* Focus states for accessibility */
.nav-button:focus,
.office-link:focus,
.external-link:focus,
nav a:focus {
    outline: 2px solid #00693e;
    outline-offset: 2px;
}
