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

:root {
    --purple-primary: #764ba2;
    --purple-secondary: #9b6bb8;
    --purple-light: #b08cc8;
    --purple-dark: #5a3780;
    --gold: #D4AF37;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f5ff;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-secondary) 100%);
    color: var(--white);
    padding: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.org-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.founded {
    font-size: 16px;
    font-style: italic;
    opacity: 0.95;
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.main-nav {
    background: var(--purple-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 18px 25px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 15px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(118, 75, 162, 0.9), rgba(155, 107, 184, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23764ba2" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-style: italic;
    opacity: 0.95;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.section-title {
    font-size: 36px;
    color: var(--purple-primary);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.greeting {
    font-weight: 600;
    color: var(--purple-dark);
    font-size: 18px;
}

.signature {
    margin-top: 30px;
    color: var(--purple-primary);
    font-size: 18px;
}

.welcome-image {
    text-align: center;
}

.president-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(118, 75, 162, 0.3);
    border: 5px solid var(--white);
}

.photo-caption {
    margin-top: 15px;
    font-size: 18px;
    color: var(--purple-dark);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cta-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(118, 75, 162, 0.2);
    border-color: var(--purple-light);
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-card h3 {
    font-size: 24px;
    color: var(--purple-primary);
    margin-bottom: 15px;
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--purple-primary);
    border-color: var(--purple-primary);
}

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

/* Footer */
.site-footer {
    background: var(--purple-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-secondary) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.content-section {
    padding: 60px 0;
}

.content-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--purple-primary);
}

.content-box h3 {
    color: var(--purple-primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.content-box p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Officers Grid */
.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.officer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(118, 75, 162, 0.2);
}

.officer-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 72px;
}

.officer-info {
    padding: 20px;
    text-align: center;
}

.officer-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--purple-primary);
    margin-bottom: 8px;
}

.officer-title {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
}

/* Newsletter & Press Pages */
.resource-list {
    list-style: none;
    margin-top: 30px;
}

.resource-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--purple-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.resource-item:hover {
    box-shadow: 0 4px 16px rgba(118, 75, 162, 0.15);
    transform: translateX(5px);
}

.resource-item h3 {
    color: var(--purple-primary);
    margin-bottom: 10px;
    font-size: 22px;
}

.resource-item a {
    color: var(--purple-secondary);
    text-decoration: none;
    font-weight: 600;
}

.resource-item a:hover {
    color: var(--purple-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .welcome-grid,
    .cta-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .org-info h1 {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .officers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 32px;
    }
}