/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    .section-padding { padding: 80px 0; }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0;
        text-align: center;
    }
    
    .brand-main { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.2rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    .section-padding { padding: 60px 0; }
    
    .header-top .top-bar-info span {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .header-top .text-end {
        text-align: left !important;
    }
    
    .floating-element {
        font-size: 2.5rem;
    }
    
    .church-highlight {
        padding: 2rem 1.5rem;
    }
    
    .pastor-img {
        height: 250px;
    }
    
    .schedule-card,
    .ministry-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .church-visual {
        height: 300px;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .header-top,
    .footer,
    .hero-buttons,
    .cta-section {
        display: none !important;
    }
    
    .section-padding {
        padding: 40px 0 !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --maroon: #600000;
        --gold: #b8860b;
        --shadow-md: 0 0 0 1px #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}