/* ============================================
   ODBC QC TALIPAPA - Premium Church Website
   Enhanced Visual Design
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --primary-dark: #0f2744;
    --primary-light: #2d4a73;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --gold: #d4af37;
    --gold-light: #f4e4ba;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-cream: #fffbeb;
    --bg-blue: #eff6ff;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.18);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.22);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.98), rgba(15, 39, 68, 0.98));
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 60%;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.nav-links a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION - STUNNING
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, 
            rgba(15, 39, 68, 0.92) 0%,
            rgba(30, 58, 95, 0.88) 50%,
            rgba(59, 130, 246, 0.75) 100%),
        url('church-building.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}

.hero h1::before {
    content: '✝';
    display: block;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    to { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold), var(--accent-color));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold), 0 0 0 0 rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.5);
}

/* ============================================
   ABOUT SECTION - ELEGANT
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 35px 0 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-medium);
    font-size: 1.08rem;
    line-height: 1.9;
}

.about-text ul {
    list-style: none;
    margin-top: 25px;
}

.about-text li {
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.about-text li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about-text li strong {
    color: var(--primary-color);
    min-width: 150px;
    font-size: 1rem;
}

.about-image {
    position: relative;
}

.church-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--accent-color));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.8;
}

.about-image:hover .church-photo {
    transform: scale(1.02);
}

/* ============================================
   BIBLE BASE SECTION - MAJESTIC
   ============================================ */
.bible-base {
    background: 
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bible-base::before {
    content: '"';
    position: absolute;
    top: -80px;
    left: 5%;
    font-size: 400px;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
}

.bible-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bible-base .section-title {
    color: var(--white);
}

.bible-base .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--accent-light));
}

.bible-base .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.verse-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.verse-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.verse-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent-color));
}

.verse-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.verse-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}

.verse-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

.verse-card cite {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.bible-resources {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.bible-resources h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--white);
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--accent-color));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.resource-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ============================================
   MINISTRIES SECTION - VIBRANT
   ============================================ */
.updates {
    background: 
        linear-gradient(180deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-blue) 100%);
    position: relative;
}

.updates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.03;
    pointer-events: none;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.update-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.update-card:hover::before {
    opacity: 1;
}

.update-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.ministry-card {
    display: flex;
    flex-direction: column;
}

.ministry-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 260px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.ministry-gallery::-webkit-scrollbar {
    display: none;
}

.ministry-gallery img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    transition: var(--transition);
}

/* Gallery with exactly 2 images - show side by side */
.ministry-gallery.gallery-two {
    scroll-snap-type: none;
    overflow-x: hidden;
    display: flex;
}

.ministry-gallery.gallery-two img {
    flex: 1 1 50%;
    max-width: 50%;
    height: 260px;
    object-fit: cover;
}

.ministry-card .update-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.ministry-card .update-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ministry-card .update-content p {
    color: var(--text-medium);
    font-size: 0.98rem;
    line-height: 1.75;
}

.ministry-card .update-content em {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ministry-desc {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-bottom: 18px !important;
    padding-bottom: 18px;
    border-bottom: 2px dashed var(--gold);
    position: relative;
}

.preacher-quote {
    font-style: italic;
    color: var(--secondary-color) !important;
    font-size: 0.9rem !important;
    margin-top: auto !important;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    background: var(--bg-cream);
    margin: 20px -30px -30px -30px;
    padding: 20px 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.social-cta {
    text-align: center;
    margin-top: 70px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.social-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.social-cta p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.btn-facebook:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(24, 119, 242, 0.5);
}

/* ============================================
   CONTACT SECTION - WARM
   ============================================ */
.contact {
    background: 
        linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 50%, var(--bg-light) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-dark) 100%);
    opacity: 0.02;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 45px;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.info-text a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--gold), var(--accent-color));
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ============================================
   FOOTER - ELEGANT
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1929 100%);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--accent-color), var(--secondary-color), var(--gold));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 20px;
}

.footer-links a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--accent-color));
    border-radius: 50%;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .church-photo {
        height: 400px;
    }
    
    .updates-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        flex-direction: column;
        padding: 30px;
        gap: 15px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 25px;
        text-align: center;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius-md);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .verse-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .about-text li {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text li strong {
        min-width: auto;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ministry-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.ministry-card:nth-child(even) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}
