﻿/* =========================
   PAGE BANNER
========================= */

.page-banner {
    position: relative;
    height: 420px;
    background: linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.65)), url('/BannerImages/IMG-20240213-WA0080.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-content {
    max-width: 850px;
    padding: 20px;
}

    .banner-content span {
        display: inline-block;
        background: rgba(255,255,255,0.18);
        padding: 10px 22px;
        border-radius: 50px;
        margin-bottom: 22px;
        font-size: 14px;
        font-weight: 600;
        backdrop-filter: blur(10px);
    }

    .banner-content h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .banner-content p {
        font-size: 18px;
        line-height: 1.9;
        opacity: 0.95;
    }

/* =========================
   NEWS CARD
========================= */

.news-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

.news-image {
    position: relative;
    overflow: hidden;
}

    .news-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: 0.5s;
    }

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2e7d32;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.news-content {
    padding: 35px;
}

.news-category {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.news-content h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #111;
}

.news-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
    transition: 0.3s;
}

    .read-btn:hover {
        color: #1b5e20;
        gap: 15px;
    }

/* =========================
   HIGHLIGHT SECTION
========================= */

.highlight-box {
    background: linear-gradient(45deg, #2e7d32, #43a047);
    border-radius: 35px;
    padding: 60px;
    color: white;
    text-align: center;
}

    .highlight-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .highlight-box p {
        max-width: 760px;
        margin: auto;
        line-height: 1.9;
        opacity: 0.95;
    }

.highlight-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: white;
    color: #2e7d32;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

    .highlight-btn:hover {
        transform: translateY(-4px);
        color: #2e7d32;
    }

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .page-banner {
        height: 360px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .news-content {
        padding: 28px;
    }

        .news-content h3 {
            font-size: 22px;
        }

    .highlight-box {
        padding: 40px 25px;
    }

        .highlight-box h2 {
            font-size: 32px;
        }
}
