/* ===================================
   JOURNAL PAGE STYLES
   =================================== */

/* Journal Hero Section */
.journal-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.journal-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.journal-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.65);
    z-index: 1;
}

.journal-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.journal-hero .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

/* Journal Introduction */
.journal-intro {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.journal-intro .intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-600);
    text-align: center;
}

/* Gathering Sections */
.gathering-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.gathering-section.alt-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gathering-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.gathering-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-orange));
    border-radius: 2px;
}

/* Gathering Grid Layout */
.gathering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.gathering-grid.reverse {
    direction: ltr;
}

.gathering-grid.reverse .gathering-content {
    order: 1;
}

.gathering-grid.reverse .agenda-card {
    order: 2;
}

/* Agenda Card */
.agenda-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-md);
    transition: var(--transition-base);
    overflow: hidden;
}

.agenda-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.agenda-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

/* Gathering Content */
.gathering-content {
    padding: var(--spacing-md);
}

.gathering-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.gathering-content p:last-child {
    margin-bottom: 0;
}

.gathering-content strong {
    color: var(--accent-teal);
    font-weight: 600;
}

.gathering-content em {
    color: var(--accent-orange);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .gathering-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .gathering-grid.reverse {
        direction: ltr;
    }
    
    .gathering-grid.reverse .gathering-content,
    .gathering-grid.reverse .agenda-card {
        order: 0;
    }
    
    .agenda-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .gathering-content {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 640px) {
    .journal-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .journal-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .journal-intro {
        padding: var(--spacing-lg) 0;
    }
    
    .journal-intro .intro-text {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .gathering-section {
        padding: var(--spacing-lg) 0;
    }
    
    .gathering-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .gathering-content p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}