/* ========================================
   FIERY PROFESSIONAL WEBSITE - CSS
   "Hearing the Fire, Living the Word"
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@300;400;600;700&display=swap');

:root {
    --fire-red: #ff4500;
    --fire-orange: #ff6b35;
    --fire-yellow: #ffa500;
    --fire-gold: #ffd700;
    --deep-red: #8b0000;
    --ember: #ff8c00;
    --charcoal: #1a1a1a;
    --smoke: #2d2d2d;
    --ash: #4a4a4a;
    --light-smoke: rgba(255, 255, 255, 0.05);
    --glass: rgba(255, 255, 255, 0.1);
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   FIRE PARTICLES BACKGROUND ANIMATION
   ======================================== */

.fire-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.05) 0%, transparent 40%);
    animation: fireGlow 8s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% { opacity: 0.5; filter: blur(60px); }
    50% { opacity: 0.8; filter: blur(80px); }
}

/* ========================================
   FIXED LOGO
   ======================================== */

.fixed-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--fire-gold);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 140, 0, 0.3);
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

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

/* ========================================
   GLASS HEADER WITH FIRE EFFECTS
   ======================================== */

.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(40px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.4), transparent) 1;
    z-index: 9998;
    padding: 1rem 0;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 2px 12px rgba(255, 69, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-header.scrolled {
    padding: 0.6rem 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(50px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(255, 69, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-image: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.6), transparent) 1;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 0 120px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.nav-brand:hover {
    transform: scale(1.05);
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.3);
}

.flame-icon {
    font-size: 2.2rem;
    animation: flameFlicker 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.6));
}

@keyframes flameFlicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.6)) hue-rotate(0deg);
    }
    25% {
        transform: scale(1.15) rotate(-8deg);
        filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.8)) hue-rotate(15deg);
    }
    75% {
        transform: scale(0.95) rotate(8deg);
        filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.7)) hue-rotate(-15deg);
    }
}

.brand-text {
    background: linear-gradient(120deg, var(--fire-gold), var(--fire-orange), var(--fire-red), var(--fire-orange), var(--fire-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fireGradient 4s ease infinite;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

@keyframes fireGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-gold), var(--fire-orange));
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

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

.nav-links li {
    animation: fadeInDown 0.6s ease forwards;
    opacity: 0;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }
.nav-links li:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.03);
}

/* Animated background gradient */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent,
        rgba(255, 140, 0, 0.3),
        rgba(255, 69, 0, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

/* Glowing border effect */
.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(120deg, var(--fire-gold), var(--fire-orange), var(--fire-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    background: rgba(255, 140, 0, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 20px rgba(255, 69, 0, 0.4),
        0 0 30px rgba(255, 140, 0, 0.2);
    color: var(--fire-gold);
    border-color: rgba(255, 140, 0, 0.3);
}

.nav-link i {
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.8));
}

/* Active link state */
.nav-link.active {
    background: rgba(255, 140, 0, 0.25);
    color: var(--fire-gold);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

/* Pulse animation for active link */
@keyframes navPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 69, 0, 0.5);
    }
}

.nav-link.active {
    animation: navPulse 2s ease-in-out infinite;
}

/* ========================================
   HERO SECTION WITH PARALLAX
   ======================================== */

.hero-parallax {
    position: relative;
    min-height: 85vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.6);
    animation: zoomIn 20s ease-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(139, 0, 0, 0.3));
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

.glowing-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.glowing-title .word {
    display: inline-block;
    background: linear-gradient(45deg, var(--fire-gold), var(--fire-orange), var(--fire-red), var(--fire-orange), var(--fire-gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowingText 5s ease infinite;
    text-shadow:
        0 0 40px rgba(255, 140, 0, 0.8),
        0 0 80px rgba(255, 69, 0, 0.6);
}

@keyframes glowingText {
    0%, 100% { background-position: 0% 50%; filter: brightness(1); }
    50% { background-position: 100% 50%; filter: brightness(1.5); }
}

.subtitle-fire {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.flame-divider {
    width: 100px;
    height: 4px;
    margin: 2rem auto;
    background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
    animation: expand 2s ease infinite;
}

@keyframes expand {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 200px; opacity: 0.7; }
}

.hero-quote {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--fire-gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.9s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--fire-gold);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--fire-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ========================================
   SECTION ANIMATIONS & STYLING
   ======================================== */

section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--fire-gold), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.fire-text {
    background: linear-gradient(45deg, var(--fire-gold), var(--fire-orange), var(--fire-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.title-underline {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.5); opacity: 0.7; }
}

/* Reveal Animation on Scroll */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.3s;
}

.reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.profile-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 5px solid var(--fire-gold);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--fire-orange);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--fire-gold);
}

.profile-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.credentials-box {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.credentials-box h4 {
    color: var(--fire-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.credentials-list li:last-child {
    border-bottom: none;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glow-box {
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.2);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--fire-gold), var(--fire-orange), var(--fire-red));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.timeline-icon {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.timeline-content {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.timeline-content h4 {
    color: var(--fire-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Career Highlights */
.career-highlights {
    margin-top: 60px;
}

.highlights-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--fire-gold);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
    border-color: var(--fire-gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight-card h4 {
    color: var(--fire-gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    border: 2px solid rgba(255, 140, 0, 0.3);
}

/* ========================================
   CALLING SECTION
   ======================================== */

.calling-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(255, 69, 0, 0.2));
    border-radius: 30px;
    padding: 100px 40px;
}

.calling-content-wrapper {
    display: grid;
    gap: 50px;
}

.calling-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.story-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
}

.icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.story-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.scripture-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.scripture-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid var(--fire-gold);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.quote-icon {
    font-size: 3rem;
    color: var(--fire-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.scripture-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
}

.scripture-cite {
    display: block;
    color: var(--fire-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.scripture-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--fire-gold), var(--fire-orange), var(--fire-gold));
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.calling-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    border: 3px solid var(--fire-gold);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
}

/* ========================================
   METHODS SECTION
   ======================================== */

.methods-intro {
    margin-bottom: 60px;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
}

.intro-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.verse-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 140, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--fire-gold);
    margin-top: 30px;
}

.verse-highlight i {
    font-size: 2rem;
    color: var(--fire-gold);
}

.verse-highlight p {
    margin: 0;
    font-style: italic;
}

.verse-highlight span {
    color: var(--fire-gold);
    font-weight: 600;
}

/* Methods Images Gallery */
.methods-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.methods-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    border: 3px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.methods-img:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--fire-gold);
    box-shadow:
        0 15px 40px rgba(255, 140, 0, 0.4),
        0 0 30px rgba(255, 69, 0, 0.3);
}

/* Four Tasks Grid */
.tasks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.task-card-modern {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.task-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-gold));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.task-card-modern:hover::after {
    transform: scaleX(1);
}

.task-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.4);
    border-color: var(--fire-gold);
}

.task-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--fire-gold), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
}

.task-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.task-card-modern h3 {
    color: var(--fire-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.task-card-modern p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.task-scripture {
    background: rgba(255, 140, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--fire-gold);
    margin-top: 20px;
}

.task-scripture p {
    font-style: italic;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.task-scripture cite {
    color: var(--fire-gold);
    font-size: 0.9rem;
}

/* Fire Metaphor Feature */
.fire-metaphor {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5), rgba(255, 69, 0, 0.3));
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.fire-visual {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    opacity: 0.3;
}

.flame-animation {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.flame {
    width: 60px;
    height: 100px;
    background: linear-gradient(to top, var(--fire-red), var(--fire-orange), var(--fire-gold));
    border-radius: 50% 50% 0 0;
    animation: flameMove 1.5s ease-in-out infinite;
}

.flame:nth-child(2) {
    height: 120px;
    animation-delay: 0.2s;
}

.flame:nth-child(3) {
    height: 90px;
    animation-delay: 0.4s;
}

@keyframes flameMove {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.2) scaleX(0.9); }
}

.fire-content {
    position: relative;
    z-index: 2;
}

.fire-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--fire-gold);
}

.flame-emoji {
    animation: flameFlicker 1.5s ease-in-out infinite;
}

.fire-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 30px;
}

.fire-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.fire-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-fire {
    color: var(--fire-gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.fire-closing {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--fire-gold);
    text-align: center;
    margin-top: 30px;
}

.fire-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    margin: 30px auto 0;
    display: block;
    border: 3px solid var(--fire-gold);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
}

/* ========================================
   BELIEFS SECTION
   ======================================== */

.beliefs-section {
    background: linear-gradient(135deg, rgba(48, 43, 99, 0.5), rgba(36, 36, 62, 0.5));
    border-radius: 30px;
    padding: 100px 40px;
}

.beliefs-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.belief-card-modern {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.belief-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.5);
    border-color: var(--fire-gold);
}

.belief-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.belief-card-modern h3 {
    color: var(--fire-gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.belief-scripture {
    background: rgba(255, 140, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--fire-gold);
}

.belief-scripture p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.belief-scripture cite {
    color: var(--fire-gold);
    font-weight: 600;
}

.belief-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--fire-gold), var(--fire-orange), var(--fire-red), var(--fire-orange), var(--fire-gold));
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.belief-card-modern:hover .belief-glow {
    opacity: 0.6;
}

/* ========================================
   VOCATIONAL SECTION
   ======================================== */

.vocational-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.vocational-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-block {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.text-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    border-color: var(--fire-gold);
}

.block-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.text-block p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.vocational-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voc-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    border: 3px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
}

.voc-img:hover {
    transform: scale(1.05);
    border-color: var(--fire-gold);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

/* ========================================
   PRACTICES SECTION
   ======================================== */

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

.practice-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.practice-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.4);
    border-color: var(--fire-gold);
}

.practice-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.practice-card h3 {
    color: var(--fire-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.practice-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.practice-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    border: 3px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.practice-card:hover .practice-image {
    transform: scale(1.05);
    border-color: var(--fire-gold);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.practices-reflection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.reflection-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    border: 3px solid var(--fire-gold);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
}

.reflection-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.reflection-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */

.glass-footer {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 140, 0, 0.3);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-flame {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: flameFlicker 2s ease-in-out infinite;
}

.footer-verse {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--fire-gold);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-content cite {
    display: block;
    color: var(--fire-orange);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Footer Contact Section */
.footer-contact {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--fire-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-link i {
    font-size: 1.3rem;
    color: var(--fire-gold);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: var(--fire-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
}

.contact-link:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.8));
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

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

    .scripture-feature {
        grid-template-columns: 1fr;
    }

    .vocational-layout {
        grid-template-columns: 1fr;
    }

    .practices-reflection {
        grid-template-columns: 1fr;
    }
}

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

    .main-nav {
        padding: 0 1rem;
    }

    .nav-brand {
        font-size: 1.4rem;
        padding: 8px 15px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: calc(100vh - 90px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 3px solid rgba(255, 140, 0, 0.5);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .fixed-logo {
        top: 10px;
        left: 10px;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    section {
        padding: 60px 20px;
    }

    .fire-metaphor,
    .calling-section,
    .beliefs-section {
        padding: 60px 20px;
    }

    .tasks-container,
    .highlights-grid,
    .calling-story,
    .beliefs-masonry,
    .practices-grid {
        grid-template-columns: 1fr;
    }

    .fire-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .glowing-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS TRIGGER
   ======================================== */

/* This will be handled by JavaScript */