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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Navigation */
.navbar {
    background-color: #1e3a8a;
    color: white;
    padding: 1rem 0;
    position: static;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    flex-shrink: 0;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fbbf24;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.hero-content .mission-statement {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    font-style: italic;
}

.logo-header {
    text-align: center;
}

.logo-header img {
    max-width: 6px;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #fbbf24;
    color: #1e3a8a;
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #2563eb;
    color: white;
}

.btn-secondary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Welcome Section */
.welcome {
    padding: 3rem 0;
}

.welcome h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #1e3a8a;
}

.welcome > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Service Highlight Section */
.service-highlight {
    padding: 3rem 0;
    background-color: #f0f9ff;
}

.service-highlight h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: #1e3a8a;
}

.service-highlight > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

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

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #fbbf24;
}

.service-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-item .time {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
}

/* Quick Info Section */
.quick-info {
    padding: 3rem 0;
    background-color: #f0f9ff;
}

.quick-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1e3a8a;
}

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

.info-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #2563eb;
    text-decoration: none;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    font-size: 1.5rem;
    text-decoration: none;
}

/* Altime TV Section */
.altime-tv-section {
    padding: 3rem 0;
}

.altime-tv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.altime-tv-text h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.altime-subtitle {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.altime-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.youtube-preview {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Services Content */
.services-content {
    padding: 3rem 0;
}

.service-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-section h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-section p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Service Tables */
.service-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.service-table thead {
    background-color: #1e3a8a;
    color: white;
}

.service-table th,
.service-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.service-table tr:hover {
    background-color: #f5f5f5;
}

.service-table thead th {
    font-weight: 600;
}

/* Online Services Grid */
.online-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.online-service-card {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.online-service-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.online-service-card ul {
    list-style: none;
}

.online-service-card li {
    padding: 0.5rem 0;
}

.online-service-card a {
    color: #2563eb;
    text-decoration: none;
}

.online-service-card a:hover {
    text-decoration: underline;
}

/* Giving Methods Grid */
.giving-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.giving-method {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #fbbf24;
}

.giving-method h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.giving-method ul {
    list-style: none;
}

.giving-method li {
    padding: 0.5rem 0;
    color: #333;
}

.till-number {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 1.3rem;
}

.giving-cta {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

.footer-section li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer p {
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-social {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-social a {
    color: #fbbf24;
    text-decoration: none;
    margin: 0 0.5rem;
}

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

/* Contact Form Styles */
.contact-content {
    padding: 3rem 0;
}

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

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    background: white;
    padding: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #fbbf24;
}

.info-box h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0.5rem;
}

.info-box a {
    color: #2563eb;
    text-decoration: none;
}

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

.info-box.prayer {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    border-left-color: #fbbf24;
}

/* Giving Page Styles */
.giving-content {
    padding: 3rem 0;
}

.giving-intro {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.giving-intro h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-content {
    padding: 3rem 0;
}

.about-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-section h3 {
    color: #2563eb;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-section ul,
.about-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.about-section li {
    margin-bottom: 0.5rem;
}

.mission-highlight {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: 600;
    padding: 1rem;
    background: #f0f9ff;
    border-left: 4px solid #fbbf24;
    margin-bottom: 1rem;
}

/* Media Page Styles */
.media-content {
    padding: 3rem 0;
}

.media-intro {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.media-intro h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.media-section {
    margin-bottom: 3rem;
}

.media-section h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.youtube-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.youtube-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.youtube-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.instagram-info {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.instagram-handle {
    font-size: 1.3rem;
    color: #2563eb;
    margin-top: 1.5rem;
    font-weight: 600;
}

.content-offerings {
    margin-bottom: 3rem;
}

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

.offering-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid #fbbf24;
}

.offering-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* How to Watch */
.how-to-watch {
    margin-bottom: 3rem;
}

.how-to-watch h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.watch-option {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.watch-option h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.watch-option a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.watch-option a:hover {
    text-decoration: underline;
}

.media-contact {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.media-contact h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.share-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.share-section h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.share-links {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.share-links p {
    margin-bottom: 0.75rem;
}

.share-links a {
    color: #2563eb;
    text-decoration: none;
}

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

.media-quote {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
}

.media-quote p {
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
}

/* Location Page Styles */
.location-content {
    padding: 3rem 0;
}

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

.map-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.directions-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.address-main {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    margin-bottom: 1rem;
}

.directions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #fbbf24;
}

.direction-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.direction-item a {
    color: #2563eb;
    text-decoration: none;
}

.direction-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation - Horizontal with flex-wrap */
    .navbar {
        position: static;
        padding: 0.75rem 0;
    }

    .navbar .container {
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 0 20px;
        justify-content: flex-start;
    }

    .nav-brand {
        font-size: 1.2rem;
        margin-right: auto;
    }

    .nav-menu {
        width: 100%;
        gap: 0.25rem;
        flex-wrap: wrap;
        padding: 0.5rem 0;
        justify-content: flex-start;
    }

    .nav-menu li {
        flex: 0 1 auto;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content .mission-statement {
        font-size: 1.2rem;
    }

    .contact-grid,
    .location-grid,
    .altime-tv-content {
        grid-template-columns: 1fr;
    }

    .service-section {
        padding: 1.5rem;
    }

    .service-table {
        font-size: 0.9rem;
    }

    .service-table th,
    .service-table td {
        padding: 0.75rem 0.5rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .altime-links {
        flex-direction: column;
    }

    .altime-links .btn {
        width: 100%;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .offerings-grid,
    .services-grid,
    .online-services-grid,
    .giving-methods-grid,
    .watch-options {
        grid-template-columns: 1fr;
    }

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

    .welcome-cards {
        grid-template-columns: 1fr;
    }
}
