/* Brilliance | Story Page Styles */

/* 1. Story Hero Section
-------------------------------------------------- */
.story-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.story-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: 1;
}

.story-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.story-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in 20s ease-out infinite;
}

@keyframes zoom-in {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.story-hero .container {
    position: relative;
    z-index: 2;
}

.story-hero-title {
    font-family: var(--font-secondary);
    font-size: 6rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.story-hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .story-hero { height: 50vh; }
    .story-hero-title { font-size: 4.5rem; }
    .story-hero-subtitle { font-size: 1.8rem; }
}


/* 2. Story Content Section
-------------------------------------------------- */
.story-content-section {
    padding: 10rem 0;
}

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

.content-text .section-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.content-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.content-text p:not(:last-child) {
    margin-bottom: 2rem;
}

.content-image img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

/* Content Text Centered Styling */
.content-text-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-text-centered p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.content-text-centered h3 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .content-image {
        order: -1; /* Move image to the top on mobile */
    }
    .story-content-section {
        padding: 7rem 0;
    }
}

/* 3. Story Promise Section
-------------------------------------------------- */
.story-promise-section {
    padding: 10rem 0;
    background-color: var(--color-surface);
}

.story-promise-section .section-header {
    margin-bottom: 6rem;
    text-align: center;
}

.story-promise-section .section-header h2 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 600;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.promise-card {
    padding: 3rem;
}

.promise-card i {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 2.5rem;
}

.promise-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.promise-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

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

/* 4. Story CTA Section
-------------------------------------------------- */
.story-cta-section {
    padding: 10rem 0;
    text-align: center;
    background-color: var(--color-background);
}

.story-cta-section h2 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.story-cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.7rem;
    color: var(--color-secondary);
}