
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
        }
         header {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
        }

        .logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
        }

        .logo-text { 
            font-size: 20px; 
            color: #2E7D32; 
            font-weight: bold; 
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        nav { 
            display: flex; 
            gap: 20px; 
            align-items: center;
        }

        nav a {
            color: #7B3F8C;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            font-weight: 500;
            padding: 8px 15px;
            white-space: nowrap;
            border-radius: 20px;
        }

        nav a:hover, nav a.active {
            color: white;
            background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
        }
         /* Responsive Container */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header - Made Responsive */
        header { 
            background: white; 
            padding: 15px 20px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            flex-wrap: wrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
            position: sticky; 
            top: 0; 
            z-index: 100; 
        }
        
        .logo-container { 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            flex: 1;
            min-width: 250px;
        }
        
        .logo { 
            min-width: 50px;
            min-height: 50px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            font-weight: bold; 
            font-size: 18px; 
            box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3); 
        }
        
        .logo-text { 
            font-size: 16px; 
            color: #2E7D32; 
            font-weight: bold; 
        }
        
        /* Mobile Hamburger Menu */
        .checkbtn {
            display: none;
            font-size: 28px;
            color: #2E7D32;
            cursor: pointer;
            order: 3;
            margin-left: 15px;
        }
        
        #checkbox {
            display: none;
        }
        
        /* Navigation - Responsive */
        nav { 
            display: flex; 
            gap: 15px; 
            align-items: center;
            flex: 2;
            justify-content: flex-end;
        }
        
        nav a { 
            color: #7B3F8C; 
            text-decoration: none; 
            font-size: 16px; 
            transition: color 0.3s; 
            font-weight: 500; 
            padding: 5px 10px;
            white-space: nowrap;
        }
        
       

        header {
            background: white;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
        }

        .logo-text {
            font-size: 18px;
            color: #2E7D32;
            font-weight: bold;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #7B3F8C;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            font-weight: 500;
        }


        .hero {
            position: relative;
            height: 600px;
            background-image: url(Media/background.jpeg);
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c85a28;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            padding: 20px;
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .hero .service-times {
            font-size: 20px;
            font-weight: bold;
            margin-top: 20px;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
        }

        .hero .worship-note {
            font-size: 18px;
            margin-top: 10px;
            font-style: italic;
        }

        .verse-section {
            background: white;
            padding: 60px 50px;
            text-align: center;
        }

        .verse-section h2 {
            color: #7B3F8C;
            font-size: 36px;
            margin-bottom: 30px;
        }

        .verse-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #f0f9ff 0%, #fff8e7 100%);
            padding: 40px;
            border-radius: 10px;
            border-left: 5px solid #2E7D32;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            min-height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .verse-text {
            font-size: 22px;
            color: #555;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .verse-reference {
            font-size: 18px;
            color: #E67E22;
            font-weight: bold;
        }

        .loading {
            color: #7B3F8C;
            font-size: 18px;
        }

        .verse-button {
            background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 5px rgba(46, 125, 50, 0.3);
        }

        .verse-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(46, 125, 50, 0.4);
        }

        .welcome-section {
            background: linear-gradient(135deg, #FFF8E1 0%, #FFE0B2 100%);
            padding: 60px 50px;
            text-align: center;
        }

        .welcome-section h2 {
            color: #E67E22;
            font-size: 40px;
            margin-bottom: 20px;
        }

        .welcome-section p {
            font-size: 18px;
            color: #555;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .plan-visit-button {
            background: linear-gradient(135deg, #7B3F8C 0%, #9B59B6 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 5px rgba(123, 63, 140, 0.3);
        }

        .plan-visit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(123, 63, 140, 0.4);
        }

        .quick-links {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .quick-link-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border-top: 4px solid transparent;
        }

        .quick-link-card:nth-child(1) {
            border-top-color: #2E7D32;
        }

        .quick-link-card:nth-child(2) {
            border-top-color: #E67E22;
        }

        .quick-link-card:nth-child(3) {
            border-top-color: #7B3F8C;
        }

        .quick-link-card:nth-child(4) {
            border-top-color: #FFB300;
        }
        .quick-link-card:nth-child(5) {
            border-top-color: #c85a28;
        }

        .quick-link-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .card-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .quick-link-card:nth-child(1) h3 {
            color: #2E7D32;
        }

        .quick-link-card:nth-child(2) h3 {
            color: #E67E22;
        }

        .quick-link-card:nth-child(3) h3 {
            color: #7B3F8C;
        }

        .quick-link-card:nth-child(4) h3 {
            color: #FFB300;
        }
         .quick-link-card:nth-child(5) h3 {
            color: #c85a28;
        }

        .quick-link-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .quick-link-card p {
            color: #555;
            font-size: 16px;
        }

        .info-section {
            background: linear-gradient(135deg, #2E7D32 0%, #7B3F8C 50%, #E67E22 100%);
            color: white;
            padding: 60px 50px;
        }

        .info-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .info-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .info-item h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .info-item p {
            font-size: 16px;
            line-height: 1.8;
        }

        .faq-preview {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 50px;
        }

        .faq-preview h2 {
            color: #7B3F8C;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-item {
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
            color: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-item:nth-child(2) .faq-question {
            background: linear-gradient(135deg, #E67E22 0%, #2E7D32 100%);
        }

        .faq-item:nth-child(3) .faq-question {
            background: linear-gradient(135deg, #7B3F8C 0%, #2E7D32 100%);
        }

        .faq-question:hover {
            opacity: 0.9;
        }

        .faq-question span {
            font-size: 24px;
        }

        .faq-answer {
            padding: 20px;
            display: none;
            background: #f9f9f9;
        }

        .faq-answer.active {
            display: block;
        }
 footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-top: 3px solid #2E7D32;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content p {
            margin: 10px 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .social-icons {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 24px;
        }

        .social-icons a {
            color: white;
            transition: all 0.3s;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .social-icons a:nth-child(1):hover {
            background: #2E7D32;
            color: white;
        }

        .social-icons a:nth-child(2):hover {
            background: #E67E22;
            color: white;
        }

        .social-icons a:nth-child(3):hover {
            background: #7B3F8C;
            color: white;
        }

        .footer-credits {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .credits-link {
            color: #E67E22;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .credits-link:hover {
            color: #FFB300;
            text-decoration: underline;
        }

        .social-icons {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 24px;
        }

        .social-icons a {
            color: white;
            transition: color 0.3s;
            text-decoration: none;
        }

        .social-icons a:nth-child(1):hover {
            color: #2E7D32;
        }

        .social-icons a:nth-child(2):hover {
            color: #E67E22;
        }

        .social-icons a:nth-child(3):hover {
            color: #7B3F8C;
        }

     /* ========== RESPONSIVE BREAKPOINTS ========== */
        
        /* Large Desktops & TVs (1200px and above) */
        @media (min-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .hero h1 {
                font-size: 48px;
            }
        }
        
        /* Tablets (768px - 1199px) */
        @media (max-width: 1199px) and (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            nav {
                gap: 10px;
            }
            
            nav a {
                font-size: 15px;
                padding: 5px 8px;
            }
        }
        
        /* Mobile Landscape & Small Tablets (576px - 767px) */
        @media (max-width: 767px) and (min-width: 576px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero {
                height: 50vh;
                background-image: url(mobile.jpeg);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
                
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .logo-text {
                font-size: 14px;
            }
            
            /* Show hamburger menu */
            .checkbtn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 99;
            }
            
            nav a {
                width: 80%;
                text-align: center;
                padding: 12px;
                margin: 5px 0;
                border-bottom: 1px solid #eee;
            }
            
            #checkbox:checked ~ nav {
                left: 0;
            }
        }
        
        /* Mobile Portrait (up to 575px) */
        @media (max-width: 575px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .hero {
                height: 40vh;
                min-height: 250px;
                background-image: url(Media/mobile.jpeg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
            }
            
            .hero h1 {
                font-size: 24px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .logo-container {
                min-width: auto;
            }
            
            .logo-text {
                font-size: 14px;
            }
            
            .upload-section {
                padding: 15px;
                margin: 20px 15px;
            }
            
            .upload-area {
                padding: 20px 15px;
            }
            
            .filter-btn {
                padding: 6px 12px;
                font-size: 12px;
                margin: 3px 2px;
            }
            
            .gallery-container,
            .gallery-filters {
                padding: 0 15px;
            }
            
            .gallery-item img {
                height: 180px;
            }
            
            /* Show hamburger menu */
            .checkbtn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 99;
            }
            
            nav a {
                width: 90%;
                text-align: center;
                padding: 12px;
                margin: 5px 0;
                border-bottom: 1px solid #eee;
                font-size: 16px;
            }
            
            #checkbox:checked ~ nav {
                left: 0;
            }
            
            .lightbox-nav {
                font-size: 30px;
                padding: 10px;
            }
            
            .lightbox-close {
                font-size: 35px;
                top: 10px;
                right: 15px;
            }
        }
        
        /* Very Small Phones (up to 360px) */
        @media (max-width: 360px) {
            header {
                padding: 10px 15px;
            }
            
            .logo {
                min-width: 40px;
                min-height: 40px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .hero h1 {
                font-size: 22px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .upload-section h2 {
                font-size: 20px;
            }
            
            .gallery-item img {
                height: 150px;
            }
        }
        
        /* TVs and Very Large Screens (min-width: 1600px) */
        @media (min-width: 1600px) {
            .container {
                max-width: 1600px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 25px;
            }
            
            .gallery-item img {
                height: 280px;
            }
            
            .hero {
                max-height: 600px;
            }
            
            .hero h1 {
                font-size: 56px;
            }
        }