﻿/* ==================================================
   INFO SECTION
================================================== */
/* ==================================================
   WELCOME SECTION
================================================== */
.welcome-section {
    padding: 60px 0;
    background: #f9fafc;
}

    .welcome-section .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

/* IMAGE AT TOP */
.welcome-image {
    width: 50%;
    margin: 0 auto 30px auto; /* center container */
    text-align: center;
}

    .welcome-image img {
        width: 100%;
        max-width: 900px;
        height: auto;
        border-radius: 10px;
        display: block;
        margin: 0 auto; /* center image */
    }

/* CONTENT BELOW IMAGE */
.welcome-content h2 {
    font-size: 32px;
    color: #1a2b6d;
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    text-align: justify;
}
@media (max-width: 768px) {

    .welcome-content h2 {
        font-size: 24px;
    }

    .welcome-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .welcome-image {
        width: 100%;
    }
}

/* ==================================================
   PAGE HERO SECTION
================================================== */
.page-hero {
    width: 100%;
    height: 180px;
    background-image: url('images/about_images/top_bar.jpg'); /* CHANGE IMAGE PATH */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

/* Dark transparent layer */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    /* Text */
    .page-hero-overlay h1 {
        color: #fff;
        font-size: 36px;
        font-weight: 600;
        letter-spacing: 1px;
    }
@media (max-width: 768px) {
    .page-hero {
        height: 180px;
    }

    .page-hero-overlay h1 {
        font-size: 24px;
    }
}
