/* General Layout & Modern Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation Bar */
nav {
    background-color: #232d4b;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 65px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-link {
    display: flex;
    align-items: center;
    padding: 0 !important;
    background: none !important;
}

.nav-logo {
    height: 46px;
    width: auto;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-tabs {
    display: flex;
    height: 100%;
}

nav .nav-tabs a {
    color: #f8fafc;
    padding: 0 22px;
    line-height: 65px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-block;
}

nav .nav-tabs a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

nav .nav-tabs a.active {
    background-color: #ef6017;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(35, 45, 75, 0.75), rgba(35, 45, 75, 0.75)), url('rotunda.jpg') no-repeat center center/cover;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-content .mission {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 35px auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Modern Gradient Buttons */
.cta-button {
    background: linear-gradient(135deg, #ef6017, #e0530b);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(239, 96, 23, 0.35);
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a2238, #232d4b);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Main Content & Section Styling */
main {
    flex: 1;
}

.section {
    padding: 65px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #232d4b;
    margin-bottom: 45px;
    font-weight: 700;
    position: relative;
}

/* Subtle orange underline under main headings */
h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ef6017;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Officer Cards Grid */
.officer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.officer-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.officer-img, .officer-img-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
}

.officer-card h3 {
    color: #232d4b;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.officer-card .title {
    font-weight: 600;
    color: #ef6017;
    font-size: 0.95rem;
}

.officer-card .year {
    color: #64748b;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.officer-card .event {
    font-size: 0.9rem;
    color: #475569;
}

/* Events Cards */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-block {
    background: #ffffff;
    padding: 32px;
    border-left: 6px solid #ef6017;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border-top: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.event-block h3 {
    font-size: 1.45rem;
    color: #232d4b;
    margin-bottom: 10px;
}

/* Contact Page Card */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    max-width: 550px;
    width: 100%;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.icon-header {
    width: 60px;
    height: 60px;
    background: #fff3ec;
    color: #ef6017;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.contact-card p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 30px;
}

.email-display {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
}

.email-display code {
    background: #f1f5f9;
    padding: 5px 10px;
    border-radius: 5px;
    color: #232d4b;
    font-weight: 600;
    margin-left: 6px;
}

/* Footer Styling */
footer {
    background-color: #232d4b;
    color: #cbd5e1;
    text-align: center;
    padding: 28px 20px;
    font-size: 0.92rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-link {
    color: #ef6017;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #ffffff;
}
