/* =============================================
   STORY / ABOUT PAGE STYLES — story.css
   Shared styles (header, nav, footer) are in shared.css
   ============================================= */

body {
    background: url('logo/s2.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    max-width: 900px;
    margin: 100px auto 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.container h2 {
    margin-bottom: 30px;
    color: #0056b3;
    text-align: center;
    font-weight: 700;
    font-size: 2.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #004085);
    border-radius: 2px;
}

.content-box {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-3px);
}

.container p {
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.8;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid #0056b3;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.container p:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.container p strong {
    color: #004085;
    font-weight: 700;
    position: relative;
}

.container p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #004085;
    opacity: 0.3;
}

/* =============================================
   STORY PAGE MEDIA QUERIES
   ============================================= */

@media (max-width: 768px) {
    .container {
        margin: 90px auto 30px;
        padding: 30px 20px;
    }

    .container h2 {
        font-size: 2.2em;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .container p {
        font-size: 1.1em;
        padding: 18px;
        line-height: 1.7;
    }

    .content-box { margin-bottom: 20px; }
}

@media (max-width: 480px) {
    .container {
        margin: 90px auto 20px;
        padding: 20px 15px;
    }

    .container h2 {
        font-size: 1.8em;
        letter-spacing: 0;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .container h2::after {
        width: 70px;
        height: 3px;
    }

    .container p {
        font-size: 1em;
        padding: 15px;
        line-height: 1.6;
        text-align: left;
    }

    .content-box { margin-bottom: 15px; }
}

@media (max-width: 360px) {
    .container {
        margin: 90px auto 15px;
        padding: 15px 10px;
    }

    .container h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .container p {
        font-size: 0.95em;
        padding: 12px;
        line-height: 1.5;
    }
}
