/* GENERAL PAGE STYLING */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #181828;
    color: #eeeeee;
}

/* HERO BANNER */
.news-hero {
    background: url('assets/news-banner.png') no-repeat center center/cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.55);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-title {
    font-size: 48px;
    color: #f9cc5a;
    font-weight: bold;
    z-index: 2;
    text-align: center;
}

/* NEWS SECTION */
.news-section {
    padding: 60px 10%;
    background-color: #202034;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.news-section h2 {
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 40px;
    text-align: center;
}

/* News Cards Container */
.news-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual News Card */
.news-card {
    background-color: #2e2e48;
    border-radius: 10px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-title-text {
    font-size: 20px;
    color: #f9cc5a;
    margin-bottom: 10px;
}

.news-summary {
    font-size: 15px;
    color: #dddddd;
    flex-grow: 1;
}

.news-date {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

/* Read More Button */
.read-more-link {
    margin-top: 15px;
    align-self: flex-start;
    padding: 8px 16px;
    background-color: #00d4ff;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.read-more-link:hover {
    background-color: #f9cc5a;
    color: #000;
}


.image-gallery {
    text-align: center;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-box {
    border: 2px solid #555;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    height: 500px;
    display: block;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}


/* Responsive Design */
@media (max-width: 768px) {
    .news-cards {
        flex-direction: column;
        align-items: center;
    }

    .news-card {
        width: 90%;
    }

    .news-title {
        font-size: 36px;
    }

    .news-section h2 {
        font-size: 28px;
    }
}
