@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:wght@700;900&display=swap');

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

:root {
    --navy: #1a2a4a;
    --navy-light: #226e93;
    --blue: #1e6c93;
    --blue-light: #49aad4;
    --red: #bf1b2c;
    --red-dark: #8b0000;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-light: #e8e8e8;
    --gray: #999;
    --dark: #212121;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

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

.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--blue-light);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.1;
    text-align: center;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    border-radius: 6px;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--blue);
    background: rgba(30, 108, 147, 0.06);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
    border: 1px solid var(--gray-light);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 0.88rem;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-light);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--off-white);
    color: var(--blue);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
}

.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/service-flags-pexels.jpg') center center / cover no-repeat;
    z-index: -2;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(191, 27, 44, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(73, 170, 212, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--white) 35px, var(--white) 36px);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 27, 44, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-blue:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 108, 147, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-blue {
    background: var(--navy);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-blue .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 16px auto;
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--blue);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.event-card .day {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.event-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.event-card .time {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.event-card .description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.event-card .price {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 0 0 24px 0;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 0 24px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    padding: 0 24px;
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.mission-text .divider {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin-bottom: 20px;
    border-radius: 2px;
}

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

.mission-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, var(--white) 35px, var(--white) 36px);
}

.page-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
}

.breadcrumb {
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text .divider {
    width: 50px;
    height: 4px;
    background: var(--red);
    margin-bottom: 20px;
    border-radius: 2px;
}

.preamble {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--blue);
}

.preamble h3 {
    color: var(--navy);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.preamble ul {
    list-style: none;
    padding: 0;
}

.preamble li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.preamble li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.membership-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.membership-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 32px;
    text-align: center;
    color: var(--white);
}

.membership-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.membership-card-body {
    padding: 28px;
}

.membership-card-body p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.membership-card-body .btn {
    width: 100%;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.faq-question {
    padding: 24px 28px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question .icon {
    font-size: 1.2rem;
    color: var(--blue);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer a {
    color: var(--blue);
    text-decoration: underline;
}

.calendar-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.calendar-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.calendar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.calendar-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.calendar-card-body {
    padding: 28px;
}

.calendar-card-body h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.calendar-card-body p {
    color: var(--text-light);
    line-height: 1.7;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.newsletter-year {
    margin-bottom: 48px;
}

.newsletter-year h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--red);
    display: inline-block;
}

.newsletter-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    text-align: center;
    min-height: 100px;
}

.newsletter-link:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.newsletter-link .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    font-weight: 700;
}

.newsletter-link .num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.newsletter-link .year {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.contact-details p {
    font-size: 0.92rem;
    color: var(--text-light);
}

.contact-details a {
    color: var(--blue);
}

.contact-details a:hover {
    color: var(--navy);
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30, 108, 147, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--blue-light);
}

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

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--blue-light);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

@media (max-width: 992px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--gray-light);
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 14px 20px;
        border-radius: 8px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

    .dropdown-content a {
        border-bottom: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .mission-section {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

.donate-btn {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    animation: pulse-glow 2s infinite;
}

.donate-btn:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
    transform: scale(1.05);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(191, 27, 44, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(191, 27, 44, 0); }
}

.upcoming-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.upcoming-card {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: center;
}

.upcoming-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.upcoming-date {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    background: var(--navy);
    border-radius: 10px;
    padding: 10px 8px;
    color: var(--white);
}

.upcoming-date .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--blue-light);
}

.upcoming-date .day-num {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.upcoming-info h4 {
    font-size: 1rem;
    color: var(--navy);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.upcoming-info .time {
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.news-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.news-card-image .date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
}

.news-card-body {
    padding: 24px;
}

.news-card-body h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.news-card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.news-card-body .read-more {
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.news-card-body .read-more:hover {
    color: var(--navy);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.gallery-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.gallery-cat-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--navy);
}

.gallery-cat-btn:hover,
.gallery-cat-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.6;
}

.benefit-card a {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.88rem;
}

.benefit-card a:hover {
    color: var(--navy);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.board-card {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 32px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.board-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.board-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.board-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.board-card .title {
    font-size: 0.88rem;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.rental-details h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.rental-details p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.rental-features {
    margin-bottom: 24px;
}

.rental-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.rental-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.rental-image-placeholder {
    border-radius: 16px;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    overflow: hidden;
}

.rental-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-guard-section .cg-image {
    border-radius: 16px;
    min-height: 350px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    overflow: hidden;
}

.cg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.upcoming-card .event-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.value-card img,
.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}

.membership-card-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.board-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.calendar-card-image {
    height: 220px;
    overflow: hidden;
}

.calendar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.calendar-card:hover .calendar-card-image img {
    transform: scale(1.05);
}

.benefit-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.contact-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hero-image-section {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-height: 400px;
}

.hero-image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.full-width-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}}

.vet-service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--red);
    transition: var(--transition);
}

.vet-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.vet-service-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.vet-service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.color-guard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
.veteran-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.color-guard-text h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.color-guard-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .top-bar {
        display: none;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .newsletter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .calendar-section {
        grid-template-columns: 1fr;
    }

    .news-feed {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .color-guard-section {
        grid-template-columns: 1fr;
    }

    .upcoming-widget {
        grid-template-columns: 1fr;
    }
}
