/* ============================================
   FULL-WIDTH BANNER SECTION
   ============================================ */

.full-width-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: visible;
    background: #0a0000;
    margin-bottom: 350px;
}

/* Background Picture Container */
.banner-background-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

/* Background Image */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    background: #0a0000;
}

/* Subtle Overlay on Image */
.full-width-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Story Container - Overlaps banner and white space */
.banner-story-container {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem;
    transform: translateY(50%);
}

/* Story Content Box - Enhanced Design */
.banner-story-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: rgba(139, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 24px;
    padding: 3.5rem 4.5rem;
    box-shadow:
        0 15px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(212, 175, 55, 0.15),
        0 0 100px rgba(212, 175, 55, 0.25);
    animation: storyFadeIn 1s ease-out;
}

/* Decorative Corner Elements */
.banner-story-content::before,
.banner-story-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.6);
}

.banner-story-content::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 24px;
}

.banner-story-content::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 24px;
}

/* Story Title - Enhanced */
.banner-story-title {
    font-family: var(--font-english-display);
    font-size: 3.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow:
        0 2px 30px rgba(212, 175, 55, 0.6),
        0 4px 50px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
    position: relative;
}

.banner-story-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
}

.banner-story-title .bengali-text {
    font-family: var(--font-bengali-display);
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* Story Text - Enhanced */
.banner-story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-cream);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.banner-story-text p {
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-story-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section - Enhanced */
.banner-story-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.banner-story-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-bright));
    color: var(--color-navy-darkest);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow:
        0 6px 25px rgba(212, 175, 55, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-story-btn:hover {
    background: var(--color-navy-darkest);
    color: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    transform: translateY(-3px);
    box-shadow:
        0 10px 35px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3);
}

/* Decorative Corner Accents */
.banner-story-content::before,
.banner-story-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.banner-story-content::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 20px;
}

.banner-story-content::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 20px;
}

/* Animation */
@keyframes storyFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .full-width-banner {
        aspect-ratio: 4 / 3;
        margin-bottom: 180px;
    }

    .banner-story-container {
        top: 40%;
    }

    .banner-story-content {
        padding: 2rem 2rem;
    }

    .banner-story-title {
        font-size: 2rem;
    }

    .banner-story-title .bengali-text {
        font-size: 1.8rem;
    }

    .banner-story-text {
        font-size: 1rem;
    }

    .banner-story-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .full-width-banner {
        aspect-ratio: 3 / 4;
        margin-bottom: 150px;
    }

    .banner-story-container {
        top: 35%;
        padding: 0 1rem;
    }

    .banner-story-content {
        padding: 1.5rem 1.5rem;
    }

    .banner-story-title {
        font-size: 1.6rem;
    }

    .banner-story-title .bengali-text {
        font-size: 1.5rem;
    }

    .banner-story-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}