                                                        /* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* BACKGROUND IMAGE */

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('home_background.png') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}

/* HEADER */

header {
    background: rgba(0, 51, 102, 0.95);
    color: white;
    padding: 15px 40px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    width: 90px;
    height: auto;
}

.header-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
}

.header-sub {
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* NAVIGATION */

nav {
    background: #00509e;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    background: white;
    color: #00509e;
    border-radius: 5px;
}

/* MAIN CONTAINER */

.container {
    display: flex;
    gap: 25px;
    padding: 40px;
    flex-wrap: wrap;
}

/* MAIN CONTENT */

.main-content {
    flex: 3;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.main-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #003366;
}

.main-content p {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* BUTTON */

.btn {
    display: inline-block;
    background: #00509e;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #003f7f;
}

/* SIDEBAR */

.sidebar {
    flex: 1;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
    height: fit-content;

}

.sidebar h2 {
    color: #003366;
    margin-bottom: 15px;
    margin-top: 10px;
}

.sidebar p {
    margin-bottom: 12px;
    font-size: 16px;
}

.sidebar a {
    color: #00509e;
    text-decoration: none;
    font-weight: 500;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* FOOTER */

footer {
    background: rgba(0, 51, 102, 0.95);
    color: white;
    text-align: center;
    padding: 18px;
    margin-top: auto;
    font-size: 15px;
    
}
.editor h2 {
    margin-bottom: 4px;
    line-height: 1.1;
}

.editor .name {
    margin: 0;
    line-height: 1.2;
}

.editor .specialization {
    margin-top: 4px;
    line-height: 1.2;
}
<head>
    <meta charset="UTF-8">
    <title>JNGETS - Archives</title>
    <link rel="stylesheet" href="style.css">

    <style>
        .archive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .archive-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            text-align: center;
            transition: 0.3s;
        }

        .archive-card:hover {
            transform: translateY(-5px);
        }

        .archive-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .archive-card h3 {
            padding: 15px 10px 5px;
            color: #002147;
        }

        .archive-card p {
            padding: 0 15px;
            font-size: 15px;
            color: #555;
        }

        .archive-card a {
            display: inline-block;
            margin: 15px 0 20px;
            padding: 10px 18px;
            background: #004080;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }

        .archive-card a:hover {
            background: #002147;
        }

        .coming-soon {
            background: #f0f0f0;
            color: #888;
        }

        .coming-soon img {
            opacity: 0.6;
        }

        .coming-text {
            color: #d35400;
            font-weight: bold;
            margin-bottom: 20px;
        }
        p {
            text-align: justify;
            line-height: 1.8;
        }
 .visitor-counter {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.visitor-counter a {
    text-decoration: none;
    color: #555;
}
/* RESPONSIVE DESIGN */

@media (max-width: 900px) {

    .container {
        flex-direction: column;
    }

    .header-title {
        font-size: 22px;
    }

    nav {
        justify-content: flex-start;
    }

}                                  