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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --accent-hover: #2980b9;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-section: #f5f7fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #e8e8e8;
    border-top: 1px solid #666;
    border-bottom: 2px solid #2d7a7a;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.announcement-banner.hidden {
    transform: translateY(-100%);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-text {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.banner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.3rem;
    transition: var(--transition);
}

.banner-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.banner-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.banner-close:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

body:has(.announcement-banner:not(.hidden)) .navbar {
    top: var(--banner-height, 50px);
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.cta-link {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link.cta-link:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8c42 0%, #ffb347 50%, #ff8c42 100%);
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
    padding: 6rem 2rem;
}

body:has(.announcement-banner:not(.hidden)) .hero {
    margin-top: calc(70px + var(--banner-height, 50px));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* About Our Fellowship Section */
.about-fellowship-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.fellowship-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Main Sections */
.main-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-card {
    padding: 3rem 2.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.section-card::before {
    display: none;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.card-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.card-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Sermon Section */
.sermon-section {
    padding: 5rem 0;
    background: var(--bg-section);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-subtitle a {
    color: var(--accent-color);
    text-decoration: none;
}

.section-subtitle a:hover {
    text-decoration: underline;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Worship Section */
.worship-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.worship-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.worship-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.worship-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.worship-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.worship-links {
    font-size: 0.95rem;
}

.worship-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.worship-links a:hover {
    text-decoration: underline;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

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

.location-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.location-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.location-card a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.location-card .meeting-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    body:has(.announcement-banner:not(.hidden)) .nav-menu {
        top: calc(70px + var(--banner-height, 50px));
        max-height: calc(100vh - 70px - var(--banner-height, 50px));
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-link.cta-link {
        margin: 0.5rem 1rem;
        display: inline-block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-section);
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        width: 100%;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu a {
        padding: 0.8rem 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .section-card {
        padding: 3rem 2rem;
    }

    .card-title {
        font-size: 2rem;
    }

    .main-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner-text {
        font-size: 0.85rem;
        padding-right: 30px;
    }

    .banner-close {
        right: 15px;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

/* About Page Styles */
.about-page {
    padding: 6rem 0 4rem;
    margin-top: 70px;
    background: var(--bg-white);
    min-height: calc(100vh - 70px);
}

body:has(.announcement-banner:not(.hidden)) .about-page {
    margin-top: calc(70px + var(--banner-height, 50px));
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-section {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

/* About Tiles Section */
.about-tiles-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 20px;
}

.about-tile {
    padding: 3rem 2.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    scroll-margin-top: 120px;
}

.about-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tile-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tile-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.tile-content {
    margin-top: 1rem;
}

.tile-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.mission-content {
    margin-top: 2rem;
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.scripture-reference {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.vision-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--bg-section);
    border-radius: 8px;
}

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

.vision-point {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.vision-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.vision-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.vision-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

    .section-heading {
        font-size: 2rem;
    }

    .vision-statement {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .vision-points {
        grid-template-columns: 1fr;
    }

    .about-tiles-section {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .about-tile {
        padding: 2rem 1.5rem;
    }

    .tile-title {
        font-size: 1.75rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 6rem 0 4rem;
    margin-top: 70px;
    background: var(--bg-white);
    min-height: calc(100vh - 70px);
}

body:has(.announcement-banner:not(.hidden)) .contact-page {
    margin-top: calc(70px + var(--banner-height, 50px));
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.interest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.interest-options .checkbox-label {
    padding: 0.75rem;
    background: var(--bg-section);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.interest-options .checkbox-label:hover {
    background: var(--bg-light);
    border-color: var(--accent-color);
}

.interest-options .checkbox-label input[type="checkbox"]:checked + span {
    color: var(--accent-color);
    font-weight: 600;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    background: var(--bg-section);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.radio-label:hover {
    background: var(--bg-light);
    border-color: var(--accent-color);
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--accent-color);
    font-weight: 600;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-info {
    background: var(--bg-section);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

/* Grow Page Styles */
.grow-page {
    padding: 0;
    margin-top: 70px;
    background: transparent;
    min-height: calc(100vh - 70px);
}

body:has(.announcement-banner:not(.hidden)) .grow-page {
    margin-top: calc(70px + var(--banner-height, 50px));
}

.grow-hero {
    text-align: center;
    width: 100%;
    margin: 0 auto 0;
    padding: 6rem 20px;
    background: #2d5a5a;
    border-radius: 0;
    box-shadow: none;
}

.grow-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.grow-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.grow-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.grow-question {
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 2rem;
}

.grow-section {
    width: 100%;
    margin: 0;
    padding: 4rem 0;
    background: #e0e0e0 !important;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(200, 200, 200, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 40% 20%, rgba(220, 220, 220, 0.25) 0%, transparent 60%);
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.grow-section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.grow-section .section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.grow-section .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.grow-buttons,
.prayer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ministry-quote {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.basics-section {
    background: #e8e8e8;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 200, 200, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(220, 220, 220, 0.15) 0%, transparent 50%);
}

@media (max-width: 768px) {
    .grow-title {
        font-size: 2.5rem;
    }

    .grow-subtitle {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .grow-section {
        padding: 2rem 1.5rem;
    }

    .grow-buttons,
    .prayer-buttons {
        flex-direction: column;
    }

    .grow-buttons .btn-primary,
    .grow-buttons .btn-secondary,
    .prayer-buttons .btn-primary,
    .prayer-buttons .btn-secondary {
        width: 100%;
    }
}

/* Groups Page Styles */
.groups-page {
    padding: 6rem 0 4rem;
    margin-top: 70px;
    background: var(--bg-white);
    min-height: calc(100vh - 70px);
}

body:has(.announcement-banner:not(.hidden)) .groups-page {
    margin-top: calc(70px + var(--banner-height, 50px));
}

.groups-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.groups-filters {
    margin-bottom: 3rem;
    padding: 0 20px;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: var(--border-color);
}

.filter-tab.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.groups-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.group-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.group-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.group-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.group-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.group-badge.open {
    background: #d4edda;
    color: #155724;
}

.group-badge.request {
    background: #fff3cd;
    color: #856404;
}

.group-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.group-details {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 8px;
}

.group-detail-item {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.group-detail-item:last-child {
    margin-bottom: 0;
}

.group-detail-item strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.group-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.group-actions .btn-primary,
.group-actions .btn-secondary {
    flex: 1;
    min-width: 120px;
}

@media (max-width: 768px) {
    .groups-list {
        grid-template-columns: 1fr;
    }

    .group-card {
        padding: 2rem 1.5rem;
    }

    .group-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .group-actions {
        flex-direction: column;
    }

    .group-actions .btn-primary,
    .group-actions .btn-secondary {
        width: 100%;
    }
}

/* Form Page Styles */
.form-page {
    padding: 6rem 0 4rem;
    margin-top: 70px;
    background: var(--bg-white);
    min-height: calc(100vh - 70px);
}

body:has(.announcement-banner:not(.hidden)) .form-page {
    margin-top: calc(70px + var(--banner-height, 50px));
}

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

.form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
}

.church-form {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-page-title {
        font-size: 2rem;
    }
}

/* Locations Page Styles */
.location-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: var(--bg-section);
    margin-top: 70px;
}

body:has(.announcement-banner:not(.hidden)) .location-hero {
    margin-top: calc(70px + var(--banner-height, 50px));
}

.location-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.service-times-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.service-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-day {
    text-align: center;
}

.service-day-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-time {
    margin-top: 1rem;
}

.service-time-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.service-time-details {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0.3rem 0;
}

.location-images-section {
    padding: 4rem 2rem;
    background: var(--bg-section);
}

.location-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-image-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    min-height: 250px;
}

.location-team-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.location-team-section .section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member-image {
    margin-bottom: 1.5rem;
}

.team-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    border: 3px solid var(--border-color);
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.location-address-section {
    padding: 4rem 2rem;
    background: var(--bg-section);
}

.address-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.address-location-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.address-text {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.address-phone {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1rem 0;
    font-weight: 500;
}

.address-phone a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.address-phone a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.address-details {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .location-title {
        font-size: 2.5rem;
    }

    .service-times-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-images-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image-placeholder {
        width: 150px;
        height: 150px;
    }

    .address-card {
        padding: 2rem 1.5rem;
    }

    .address-location-name {
        font-size: 2rem;
    }
}

