/* Base Styles */
:root {
    --primary: #003A6F;
    --secondary: #F33;
    --light: #f8f9fa;
    --dark: #212529;
    --grey: #6c757d;
    --light-grey: #e9ecef;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #002b54;
    color: white;
}

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

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

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

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.logo h1 {
    font-size: 24px;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 600;
    color: var(--dark);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.hero .btn:hover {
    background-color: #e61919;
}

/* Section Styles */
.section {
    padding: 50px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-content .btn,
.card-content div {
    margin-top: auto;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 20px 15px;
}

.feature-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-container i {
    transition: transform 0.3s ease;
}

.icon-container:hover i {
    transform: scale(1.1);
}

.icon-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon-charity {
    background-color: rgba(0, 58, 111, 0.1);
}

.icon-charity i {
    color: var(--primary);
}

.icon-wish {
    background-color: rgba(255, 51, 51, 0.1);
}

.icon-wish i {
    color: var(--secondary);
}

.icon-scholarship {
    background-color: rgba(0, 58, 111, 0.1);
}

.icon-scholarship i {
    color: var(--primary);
}

/* Get Involved Icons */
.card-icon {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.card-icon .icon-container {
    margin: 0;
}

.icon-donate {
    background-color: rgba(255, 51, 51, 0.1);
}

.icon-donate i {
    color: var(--secondary);
}

.icon-application {
    background-color: rgba(0, 58, 111, 0.1);
}

.icon-application i {
    color: var(--primary);
}

.icon-contact {
    background-color: rgba(0, 58, 111, 0.1);
}

.icon-contact i {
    color: var(--primary);
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-info {
    flex: 0 0 300px;
}

.footer-info h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: white;
}

.footer-links a:hover {
    color: var(--light-grey);
}

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

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* About Page */
.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-member .position {
    color: var(--grey);
    margin-bottom: 15px;
}

/* Donation Options */
.donation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.donation-option {
    flex: 1;
    min-width: 250px;
    padding: 30px 20px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.donation-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.donation-option h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: var(--primary);
}

.donation-option p {
    margin-bottom: 10px;
}

.donation-option p:last-child {
    margin-bottom: 0;
}

/* Events */
.event {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-grey);
}

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

.event-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.event-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-gallery img:hover {
    transform: scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .event-gallery {
        grid-template-columns: 1fr;
    }
    
    .event-gallery img {
        height: 200px;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .main-nav.show {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content > div {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Background helpers */
.bg-light-grey { background-color: var(--light-grey); }

/* Spacing helpers */
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-40 { margin-bottom: 40px; }
.pt-60 { padding-top: 60px; }
.pb-80 { padding-bottom: 80px; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }

/* Layout helpers */
.flex { display: flex; }
.gap-10 { gap: 10px; }

/* Buttons */
.btn-sm { padding: 8px 14px; font-size: 0.95rem; }

/* 404 page */
.error-section { padding-top: 60px; padding-bottom: 80px; }
.error-code { font-size: 120px; margin-bottom: 0; color: var(--secondary); }

/* Donate page */
.donation-option { padding: 20px 15px; }

/* Contact Page Styles */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--light);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    font-size: 24px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary);
    margin-top: 5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary);
}

/* Officers Styles */
.leadership-info {
    margin-top: 20px;
}

.officer-list {
    margin-top: 20px;
}

.officer-item {
    background-color: var(--light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.officer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.officer-item h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.officer-item p {
    margin-bottom: 0;
    font-weight: 600;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Icon Links */
.icon-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.icon-link:hover .icon-container {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon-link:hover .icon-charity i {
    color: var(--primary);
}

.icon-link:hover .icon-wish i {
    color: var(--secondary);
}

.icon-link:hover .icon-scholarship i {
    color: var(--primary);
}

/* Officers Row */
.officers-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.officers-row .team-member {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.officer-icon {
    background-color: var(--light-grey);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.team-member:hover .officer-icon {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Board of Directors Cards */
.board-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.board-card {
    background-color: var(--light);
    color: var(--primary);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex: 0 0 calc(25% - 15px);
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-card:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .officers-row, .board-row {
        flex-wrap: wrap;
    }
    
    .officers-row .team-member {
        flex: 1 0 45%;
    }
    
    .board-card {
        flex: 0 0 calc(33.333% - 15px);
    }
}

@media (max-width: 768px) {
    .officers-row .team-member {
        flex: 1 0 45%;
    }
    
    .board-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .officers-row .team-member {
        flex: 1 0 100%;
    }
    
    .board-card {
        flex: 0 0 100%;
    }
} 
