/* Force light mode across entire website */
html {
    color-scheme: light !important;
}

body {
    color-scheme: light !important;
    background-color: white !important;
    color: black !important;
}

/* Our Story Page Specific Styles */

/* Story Hero Section */
.story-hero {
    padding: 80px 0 80px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    background: #ffffff;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    background-color: #ffc801;
    z-index: 0;
    box-shadow: inset 0px 22px 15px rgba(0, 0, 0, 0.1), inset 0px 22px 15px rgba(0, 0, 0, 0.15);

}

.story-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 2;
}

.story-hero>* {
    position: relative;
    z-index: 1;
}

.events-bunting-top {
    position: absolute;
    width: 100%;
    max-width: 1600px;
    z-index: 2;
    height: 50px;
    background-image: url('LanternSingle.png');
    background-repeat: repeat-x;
    background-size: auto 50px;
    background-position: left top;
}


.story-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
}

/* Story Content Section */
.story-content-section {
    padding-bottom: 80px;
    background: white;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.story-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    box-shadow: inset 0px 8px 15px rgba(0, 0, 0, 0.2), inset 0px -8px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

.story-content-section>* {
    position: relative;
    z-index: 1;
}


.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: justify;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 35px;
    font-weight: 400;
    text-align: justify;
}

.story-closing {
    font-size: 1.2rem;
    line-height: 1.8;
    color: black;
    margin-top: 50px;
    font-weight: 600;
    text-align: left;
    font-style: italic;
}

/* Brand name styling */
.brand-name {
    font-weight: 700;
    color: black;
}

/* Bold text styling */
.story-content strong {
    font-weight: 700;
    color: black;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .story-hero {
        padding: 80px 0 60px;
    }

    .footer-bottom {
        margin: 0 -15px;
    }

    .story-hero h1 {
        font-size: 2.5rem;
    }

    .story-content-section {
        padding: 60px 0;
    }

    .story-content {
        padding: 0 20px;
    }

    .story-intro,
    .story-paragraph {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 30px;
    }

    .story-closing {
        font-size: 1.1rem;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .story-hero h1 {
        font-size: 2rem;
    }

    .story-content {
        padding: 0 15px;
    }

    .story-intro,
    .story-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .story-closing {
        font-size: 1rem;
        margin-top: 35px;
    }
}