/* concept.css */

.concept-page {
    background-color: var(--bg-dark);
}

.concept-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/moonrise_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 5rem;
}

.concept-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(18,10,11,1) 100%);
    z-index: 1;
}

.concept-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 5rem; /* Push down to avoid navbar */
}

/* Nav specific to Concept page to ensure it's visible over any hero */
.solid-nav {
    background: rgba(18, 10, 11, 0.85);
    backdrop-filter: blur(10px);
}

/* Main Story section */
.story-main {
    padding-bottom: 5rem;
}

.story-section {
    padding: 4rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-section.reverse .story-grid {
    direction: rtl;
}

.story-section.reverse .story-content,
.story-section.reverse .story-image-wrapper {
    direction: ltr; /* Reset text direction for children */
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.story-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.gold-text {
    color: var(--primary-color); /* assuming primary color acts like the 'gold' from events page, since it's the brand color */
}

/* If you need actual gold instead of red, you can redefine it here, 
   but we'll stick to primary color for consistency, or specify a gold color */
.gold-text {
    color: #cca65f; 
}

.text-light {
    color: var(--text-light);
}

.italic-title {
    font-style: italic;
    font-family: var(--font-heading);
}

.signature-box {
    margin-top: 2rem;
    padding: 2rem;
    border-left: 2px solid #cca65f;
    background: rgba(255, 255, 255, 0.03);
}

.signature-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.signature-name {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
}

.story-cta {
    padding: 6rem 0 8rem;
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 992px) {
    .story-grid,
    .story-section.reverse .story-grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .concept-hero h1 {
        font-size: 3.5rem;
    }
}
