/* Color Variables */
:root {
    --primary-navy: #1e3a5f;
    --secondary-gold: #c9a961;
    --accent-burgundy: #8b2e3c;
    --dark: #2c2c2c;
    --gray-dark: #4a4a4a;
    --gray-medium: #6b6b6b;
    --gray-light: #f7f7f7;
    --white: #ffffff;
    --cream: #faf8f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    background: transparent;
    border-radius: 50%;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-navy);
}

.tagline {
    font-size: 12px;
    color: var(--secondary-gold);
    font-style: italic;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-navy);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-burgundy), var(--secondary-gold));
    position: relative;
    margin-top: 70px;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="50" y="50" font-size="60" fill="rgba(255,255,255,0.05)" text-anchor="middle">✟</text></svg>');
    opacity: 0.4;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    background: transparent;
    border-radius: 50%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scripture-icon {
    font-size: 60px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(201,169,97,0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(201,169,97,0.8);
        transform: scale(1.1);
    }
}

.hero-title {
    font-family: 'Crimson Text', serif;
    font-size: 64px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--cream);
}

.role-item {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.role-divider {
    color: var(--secondary-gold);
    font-weight: bold;
}

.hero-tagline {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary-gold);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Section Styles */
.section-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--accent-burgundy));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.divider.left {
    margin: 0 0 20px 0;
}

.section-description {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Message Section */
.message {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #f0ebe5 100%);
    position: relative;
    overflow: hidden;
}

.message-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decorative-cross {
    position: absolute;
    font-size: 200px;
    color: var(--secondary-gold);
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.decorative-cross.left {
    top: 50px;
    left: -50px;
    transform: rotate(-15deg);
}

.decorative-cross.right {
    bottom: 50px;
    right: -50px;
    transform: rotate(15deg);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
}

.message-content {
    max-width: 950px;
    margin: 0 auto;
}

.message-card {
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(30, 58, 95, 0.2);
}

/* Decorative corners */
.card-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-style: solid;
    border-color: var(--secondary-gold);
}

.card-corner.top-left {
    top: 15px;
    left: 15px;
    border-width: 3px 0 0 3px;
}

.card-corner.top-right {
    top: 15px;
    right: 15px;
    border-width: 3px 3px 0 0;
}

.card-corner.bottom-left {
    bottom: 15px;
    left: 15px;
    border-width: 0 0 3px 3px;
}

.card-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-width: 0 3px 3px 0;
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 35px;
    font-size: 100px;
    color: var(--secondary-gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.message-text {
    position: relative;
    z-index: 2;
}

.greeting {
    font-family: 'Crimson Text', serif;
    font-size: 30px;
    color: var(--primary-navy);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.greeting-highlight {
    color: var(--accent-burgundy);
    position: relative;
    display: inline-block;
}

.greeting-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary-gold);
    opacity: 0.3;
    z-index: -1;
}

.message-text p {
    font-size: 18px;
    line-height: 2;
    color: var(--gray-dark);
    margin-bottom: 25px;
}

.message-text strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.emphasis {
    font-weight: 600;
    color: var(--accent-burgundy);
    font-size: 20px !important;
    font-style: italic;
    padding: 20px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(139, 46, 60, 0.1));
    border-radius: 8px;
    border-left: 4px solid var(--secondary-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.emphasis-icon {
    font-size: 24px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.signature {
    margin-top: 50px;
    padding-top: 30px;
    position: relative;
    text-align: right;
}

.signature-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
    margin-bottom: 20px;
}

.signature-text {
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 8px;
    font-size: 16px;
}

.signature-name {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.signature-cross {
    font-size: 24px;
    color: var(--secondary-gold);
    animation: glow 3s ease-in-out infinite;
}

/* Social Media Section in Message Card */
.social-media-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed var(--secondary-gold);
    text-align: center;
}

.social-heading {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 600;
}

.social-icons-message {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.2);
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-btn.youtube {
    background: #FF0000;
    color: white;
}

.social-btn.youtube:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.social-btn.whatsapp:hover {
    background: #1eb855;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.social-btn.email {
    background: var(--accent-burgundy);
    color: white;
}

.social-btn.email:hover {
    background: #6b1f2d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 46, 60, 0.4);
}

.social-tagline {
    font-style: italic;
    color: var(--gray-medium);
    font-size: 15px;
    margin-top: 15px;
}

.footer-social .social-tagline {
    color: var(--gray-light);
    font-size: 16px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-gold));
    border-radius: 10px;
    overflow: hidden;
}

.pastor-photo {
    width: 100%;
    height: 600px;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--cream), var(--gray-light));
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    color: var(--primary-navy);
    font-weight: 600;
    z-index: 2;
}

.cross-overlay {
    position: absolute;
    font-size: 200px;
    color: var(--primary-navy);
    opacity: 0.05;
    z-index: 1;
}

.about-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.lead {
    font-size: 20px;
    color: var(--accent-burgundy);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-dark);
    line-height: 1.9;
}

.highlight-box {
    background: var(--cream);
    padding: 30px;
    border-left: 4px solid var(--secondary-gold);
    margin: 30px 0;
    border-radius: 5px;
}

.highlight-text {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: var(--primary-navy);
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    color: var(--secondary-gold);
}

.feature-text h4 {
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-size: 17px;
}

.feature-text p {
    color: var(--gray-medium);
    font-size: 14px;
    margin: 0;
}

/* Books Section */
.books {
    padding: 100px 0;
    background: var(--gray-light);
}

.books-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.books-message {
    font-size: 19px;
    color: var(--gray-dark);
    line-height: 1.8;
    font-style: italic;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.book-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.book-cover {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--gray-light);
}

.book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.book-card:hover .book-cover-img {
    transform: scale(1.05);
}

.book-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-burgundy));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.book-title-preview {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

.book-cross {
    position: absolute;
    font-size: 150px;
    color: var(--secondary-gold);
    opacity: 0.2;
}

.book-info {
    padding: 30px;
}

.book-info h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.book-description {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-book {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.call-to-action {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--secondary-gold);
}

.call-to-action h3 {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: var(--primary-navy);
    color: var(--white);
}

.impact-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-gold);
}

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

.impact-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.impact-item h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-gold);
}

.impact-item p {
    color: var(--cream);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    color: var(--secondary-gold);
}

.contact-item h4 {
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: var(--gray-medium);
    margin: 0;
}

.verse-box {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--secondary-gold);
    border-radius: 5px;
    margin-top: 30px;
}

.verse-text {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: var(--primary-navy);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px;
}

.verse-author {
    color: var(--gray-medium);
    font-size: 14px;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-gold);
}

.contact-form button {
    width: 100%;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    max-height: 400px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-text h4 {
    color: var(--white);
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-text p {
    color: var(--secondary-gold);
    font-size: 14px;
    margin: 0;
}

/* Gallery Label */
.section-label.orange {
    color: var(--accent-burgundy);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    background: transparent;
    border-radius: 50%;
    filter: brightness(1.2);
}

.footer-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-gold);
}

.footer-tagline {
    color: var(--secondary-gold);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
}

.scripture-footer {
    font-size: 32px;
    color: var(--secondary-gold);
    margin-top: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.footer-section p {
    color: var(--gray-light);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--gray-light);
    margin: 5px 0;
}

/* Footer Social Media */
.footer-social {
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.footer-social h3 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    color: var(--secondary-gold);
    margin-bottom: 30px;
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-section a {
    color: var(--secondary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Contact Item Links */
.contact-item a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 52px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-roles {
        font-size: 12px;
        gap: 8px;
    }
    
    .role-item {
        font-size: 11px;
    }
    
    .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .hero-logo-img {
        height: 120px;
        width: 120px;
    }
    
    .footer-logo-img {
        height: 60px;
        width: 60px;
    }

    .section-header h2 {
        font-size: 36px;
    }
    
    .social-icons-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-social .social-btn {
        justify-content: center;
    }

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

    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item {
        min-height: 250px;
    }

    .message-card {
        padding: 40px 30px;
    }
    
    .social-icons-message {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn {
        justify-content: center;
    }
    
    .decorative-cross {
        font-size: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .logo-text {
        font-size: 20px;
    }
    
    .logo-img {
        height: 40px;
        width: 40px;
    }
    
    .hero-logo-img {
        height: 100px;
        width: 100px;
    }
    
    .footer-logo-img {
        height: 50px;
        width: 50px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .message-card {
        padding: 30px 20px;
    }

    .greeting {
        font-size: 24px;
    }
    
    .greeting-highlight::after {
        height: 6px;
    }
    
    .social-heading {
        font-size: 20px;
    }
    
    .social-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-text h4 {
        font-size: 18px;
    }
    
    .gallery-text p {
        font-size: 13px;
    }
    
    .decorative-cross {
        font-size: 100px;
    }
    
    .card-corner {
        width: 20px;
        height: 20px;
    }
    
    .emphasis {
        font-size: 17px !important;
        padding: 15px;
    }
}
