/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    font-size: 0.79em;
}

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

/* Header and Logo */
.site-header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo img {
    max-width: 400px;
    height: auto;
}

/* Navigation */
.navbar {
    background-color: #5badcf;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #333;
    background-color: rgba(255,255,255,0.2);
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 300px);
}

.page-title {
    font-size: 2.5rem;
    color: #5badcf;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Intro Section */
.intro-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.intro-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-info {
    font-size: 1rem;
    color: #666;
}

.contact-info a {
    color: #5badcf;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Video Wrapper - Responsive */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Join Section */
.join-section {
    margin-bottom: 4rem;
}

.join-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.join-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.requirements-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #555;
}

.requirements-list li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.requirements-list a {
    color: #5badcf;
    text-decoration: none;
}

.requirements-list a:hover {
    text-decoration: underline;
}

/* Team Section */
.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.member-photo {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #5badcf;
    margin-bottom: 1rem;
    border-bottom: 2px solid #5badcf;
    padding-bottom: 0.5rem;
}

.team-member p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-member .credentials {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.team-member .signature {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.team-member a {
    color: #5badcf;
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}

/* Retirees Section */
.retirees-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.retirees-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.retirees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.retiree {
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.retiree h3 {
    color: #5badcf;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Memorial Section */
.memorial-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.memorial-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.memorial {
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.memorial h3 {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

.memorial p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #5badcf;
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #333;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #333;
}

.footer-contact {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: underline;
}

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

.footer-info {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #fff;
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.location p {
    margin-bottom: 0.5rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.9rem;
}

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

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid,
    .memorial-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .join-section h2,
    .team-section h2,
    .retirees-section h2,
    .memorial-section h2 {
        font-size: 1.5rem;
    }

    .intro-section {
        padding: 1.5rem;
    }

    .team-member,
    .memorial {
        padding: 1rem;
    }
}

