/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #1a2f1a;
    overflow-x: hidden;
    background: linear-gradient(135deg, #8fbc8f 0%, #9acd32 30%, #daa520 70%, #d2691e 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 139, 34, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(135, 206, 235, 0.1) 0%, transparent 30%);
    z-index: -3;
    pointer-events: none;
}

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

/* Animated Forest Background */
.forest-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: 
        /* Subtle overlay to blend with content */
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 30%,
            transparent 60%,
            rgba(0, 0, 0, 0.1) 100%
        ),
        /* The actual mountain photo */
        url('mountain-background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.trees {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(45, 74, 43, 0.6) 0%, 
        rgba(45, 74, 43, 0.3) 50%, 
        transparent 100%);
    background-image: 
        /* Subtle foreground forest silhouette to complement the photo */
        radial-gradient(ellipse at 15% bottom, rgba(34, 139, 34, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 45% bottom, rgba(107, 142, 35, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse at 75% bottom, rgba(85, 107, 47, 0.4) 0%, transparent 70%);
}

.floating-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144, 238, 144, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 218, 185, 0.3) 0%, transparent 50%);
    animation: gentle-sway 20s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(-10px); }
    75% { transform: translateX(-10px) translateY(-5px); }
}

/* Header Styles */
.header {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.logo {
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nature-icon {
    margin-bottom: 15px;
    animation: gentle-float 4s ease-in-out infinite;
}

.mountain-logo {
    width: 80px;
    height: 60px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

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

.site-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #1a2f1a;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(139, 69, 19, 0.3), 1px 1px 2px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #2d4a2b, #8b4513, #2d4a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: #4a5d4a;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 60px;
}

.welcome-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: gentle-rotate 30s linear infinite;
}

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

.nature-illustration {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.forest-scene {
    width: 300px;
    height: 150px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    overflow: hidden;
}

.welcome-card h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #2d4a2b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(139, 69, 19, 0.2);
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a2f1a;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Forest Paths Section */
.forest-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.path-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.path-card::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: left 0.5s ease;
}

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

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

.path-icon-nature {
    margin-bottom: 20px;
    animation: gentle-float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    color: inherit;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 1; }
}

.path-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #1a2f1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.path-card p {
    color: #4a5d4a;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
}

.path-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8fbc8f, #228b22);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.path-link:hover {
    background: linear-gradient(135deg, #228b22, #006400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

/* Remove breadcrumb styling as we removed breadcrumbs from HTML */

@keyframes breadcrumb-drop {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(3px); }
}

/* Specific Path Colors - Earthy Nature Tones */
.jumble-path {
    border-left: 5px solid #8b4513;
    color: #8b4513;
}

.jumble-path .path-link {
    background: linear-gradient(135deg, #8b4513, #a0522d);
}

.jumble-path .path-link:hover {
    background: linear-gradient(135deg, #a0522d, #654321);
}

.newsroom-path {
    border-left: 5px solid #2e8b57;
    color: #2e8b57;
}

.newsroom-path .path-link {
    background: linear-gradient(135deg, #2e8b57, #3cb371);
}

.newsroom-path .path-link:hover {
    background: linear-gradient(135deg, #3cb371, #228b22);
}

.biblestr-path {
    border-left: 5px solid #daa520;
    color: #daa520;
}

.biblestr-path .path-link {
    background: linear-gradient(135deg, #daa520, #b8860b);
}

.biblestr-path .path-link:hover {
    background: linear-gradient(135deg, #b8860b, #9a7c0a);
}

.lumina-path {
    border-left: 5px solid #6b46c1;
    color: #6b46c1;
}

.lumina-path .path-link {
    background: linear-gradient(135deg, #6b46c1, #7c3aed);
}

.lumina-path .path-link:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* About Section */
.about-section {
    margin-bottom: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.forest-divider {
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d4a2b;
    max-width: 600px;
    margin: 0 auto 25px;
    font-style: italic;
}

.signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #8b4513;
    font-weight: 600;
}

.red-hood-small {
    font-size: 1.5rem;
    animation: gentle-sway 3s ease-in-out infinite;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    background: rgba(45, 74, 43, 0.1);
    backdrop-filter: blur(10px);
}

.footer-content {
    color: #2d4a2b;
}

.nature-divider {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    opacity: 0.8;
}

.footer-decoration {
    width: 200px;
    height: 40px;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #2d4a2b;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .welcome-card, .about-card {
        padding: 25px;
    }
    
    .path-card {
        padding: 25px;
    }
    
    .forest-paths {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .welcome-card h2 {
        font-size: 2rem;
    }
    
    .path-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .red-hood {
        font-size: 2.5rem;
    }
    
    .welcome-card, .about-card, .path-card {
        padding: 20px;
    }
    
    .welcome-text, .about-text {
        font-size: 1rem;
    }
}
