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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.nav-logo-link:hover {
    text-decoration: none;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.church-name {
    font-size: 1.6rem;
    font-weight: bold;
    color: #d2691e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d2691e;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #d2691e;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.8), rgba(139, 69, 19, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.christ, .chaos {
    font-size: 5rem;
    display: inline;
    margin: 0;
}

.or {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
}

.service-info {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.service-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d2691e;
    margin-bottom: 1rem;
}

.service-location {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #d2691e;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: block;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.church-symbol {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Distinctives Section */
.distinctives {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.distinctives-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.distinctive-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #d2691e;
}

.distinctive-item:hover {
    transform: translateY(-5px);
}

.distinctive-item h3 {
    color: #d2691e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.distinctive-item p {
    line-height: 1.7;
}

 

/* Beliefs Section */
.beliefs {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.belief-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-5px);
}

.belief-item h3 {
    color: #d2691e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.belief-item p {
    line-height: 1.7;
}

/* Worship Section */
.worship {
    padding: 5rem 0;
    background-color: white;
}

.worship-content {
    display: block;
}

.service-details {
    margin-bottom: 2rem;
}

.detail-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.expectations {
    list-style: none;
    padding-left: 0;
}

.expectations li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.expectations li:before {
    content: "✓";
    color: #d2691e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.worship-symbol {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

/* Service Elements (used in Worship section) */
.service-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-element {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d2691e;
}

.service-element h4 {
    color: #d2691e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-element p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

 

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.contact-info h3 {
    color: #d2691e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d2691e;
    font-weight: bold;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d2691e;
}

.submit-btn {
    background-color: #d2691e;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 1rem 0;
    display: inline-block;
}

.submit-btn:hover {
    background-color: #b8860b;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.crec-link {
    color: #d2691e;
    text-decoration: none;
    font-weight: bold;
}

.crec-link:hover {
    text-decoration: underline;
}

/* Social Media Links */
.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d2691e;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #d2691e;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #d2691e;
    color: white;
    text-decoration: none;
}

.social-icon {
    font-size: 1.2rem;
}

.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #1877f2;
    color: white;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    margin-right: 0.5rem;
}

.email-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
    object-fit: contain;
}

.facebook-contact-link {
    color: #d2691e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.facebook-contact-link:hover {
    color: #b8860b;
    text-decoration: underline;
}

/* Page Layout Styles */
.main-content {
    margin-top: 70px;
    padding: 2rem 0;
    min-height: calc(100vh - 70px);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.page-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.page-header h1 {
    font-size: 3rem;
    color: #d2691e;
    font-weight: bold;
}

.content-section {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.content-section h3 {
    color: #d2691e;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.content-section ol {
    padding-left: 1.5rem;
    margin-left: 0;
}

.creed-text {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d2691e;
    margin: 1rem 0;
}

.creed-text p {
    margin-bottom: 1rem;
    font-style: italic;
}

/* PDF Container */
.pdf-container {
    margin: 2rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-container embed {
    display: block;
    width: 100%;
    min-height: 800px;
}

.pdf-fallback {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
}

.pdf-download-link {
    color: #d2691e;
    text-decoration: none;
    font-weight: bold;
}

.pdf-download-link:hover {
    text-decoration: underline;
}

/* Music Page Styles */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.download-column {
    display: flex;
    flex-direction: column;
}

.download-column h2 {
    margin-bottom: 1rem;
}

.song-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.song-column {
    display: flex;
    flex-direction: column;
}

.song-column h3 {
    color: #d2691e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #d2691e;
    padding-bottom: 0.5rem;
}

.song-links-container {
    margin-top: 1rem;
}

.song-item {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #d2691e;
}

.song-link {
    color: #d2691e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.song-link:hover {
    color: #b8860b;
    text-decoration: underline;
}

.placeholder-text {
    color: #666;
    font-style: italic;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .church-name {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3rem;
        flex-direction: row;
        gap: 0.5rem;
    }

    .christ, .chaos {
        font-size: 3rem;
        display: inline;
    }

    .or {
        font-size: 1.8rem;
    }

    .service-info {
        padding: 1.5rem;
    }

    .about-content,
    .worship-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin-left: 1rem;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        color: #d2691e;
    }

    /* Page layout mobile adjustments */
    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .church-name {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        flex-direction: row;
        gap: 0.3rem;
    }

    .christ, .chaos {
        font-size: 2.5rem;
        display: inline;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .nav-container {
        padding: 0 10px;
        height: 60px;
    }
    
    .nav-logo {
        gap: 6px;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    .church-name {
        font-size: 0.9rem;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Calendar Page Styles */
.admin-panel {
    margin-bottom: 2rem;
}

.admin-controls {
    margin-bottom: 2rem;
    text-align: center;
}

/* Monthly Calendar Grid */
.calendar-container {
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.calendar-header h2 {
    margin: 0;
    color: #d2691e;
    font-size: 1.8rem;
}

.calendar-nav-btn {
    background-color: #d2691e;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.calendar-nav-btn:hover {
    background-color: #b8860b;
}

.calendar-grid {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #d2691e;
    color: white;
}

.weekday {
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.weekday:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #ddd;
}

.calendar-day {
    min-height: 120px;
    padding: 0.5rem;
    background-color: white;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    font-weight: bold;
    font-size: 1.1rem;
}

.calendar-day:hover {
    background-color: #f8f9fa;
}

.calendar-day.today {
    background-color: #fff3cd;
    border-color: #d2691e;
}

.calendar-day.has-events {
    background-color: #e8f5e8;
    border-color: #28a745;
}

.calendar-day.has-events:hover {
    background-color: #d4edda;
}

.empty-day {
    background-color: #f8f9fa;
    cursor: default;
}

.empty-day:hover {
    background-color: #f8f9fa;
}

.event-type-indicator {
    position: absolute;
    top: 2rem;
    left: 0.3rem;
    right: 0.3rem;
    color: white;
    border-radius: 4px;
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.2rem;
}

.event-type-indicator.fellowship {
    background-color: #28a745;
}

.event-type-indicator.service {
    background-color: #007bff;
}

.event-type-indicator.special {
    background-color: #d2691e;
}

.more-events-indicator {
    position: absolute;
    left: 0.3rem;
    width: fit-content;
    max-width: calc(100% - 0.6rem);
    color: #666;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    padding: 0.05rem 0.3rem;
    font-size: 0.6rem;
    font-weight: bold;
    text-align: center;
    font-style: italic;
    line-height: 1.2;
}

/* Day Events Modal */
.day-events-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.modal-header h3 {
    margin: 0;
    color: #d2691e;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 1rem;
}

.day-event-item {
    background-color: #f8f9fa;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    border-left: 4px solid #d2691e;
    position: relative;
}

.event-type-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.event-type-badge.fellowship {
    background-color: #28a745;
}

.event-type-badge.service {
    background-color: #007bff;
}

.event-type-badge.special {
    background-color: #d2691e;
}

.day-event-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.edit-btn, .delete-btn {
    padding: 0.3rem 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.edit-btn {
    background-color: #d2691e;
    color: white;
}

.edit-btn:hover {
    background-color: #b8860b;
}

.delete-btn {
    background-color: #dc3545;
    color: white;
}

.delete-btn:hover {
    background-color: #c82333;
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    text-align: right;
}

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

.info-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d2691e;
}

.info-item h3 {
    color: #d2691e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

/* Mobile Calendar Styles */
@media (max-width: 768px) {
    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .calendar-header h2 {
        font-size: 1.5rem;
    }
    
    .calendar-nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
    }
    
    .calendar-day {
        min-height: 100px;
        padding: 0.3rem;
        font-size: 0.9rem;
        font-weight: bold;
    }
    
    .weekday {
        padding: 0.8rem 0.3rem;
        font-size: 0.9rem;
    }
    
    .event-type-indicator {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
        top: 1.5rem;
    }
    
    .more-events-indicator {
        font-size: 0.55rem;
        padding: 0.1rem 0.2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .church-info {
        grid-template-columns: 1fr;
    }
}
