/* ================================
   GLOBAL RESET
================================ */
html, body {
    margin: 0;
    padding: 0;
}

/* ================================
   HEADER BANNER
================================ */
.header-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('../images/banner.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 180px;
    padding: 50px 30px;
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Logos */
.header-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
}

/* Title */
.header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.header-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* ================================
   NAVBAR
================================ */
.navbar {
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 900;
    margin: 0 50px;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

/* ================================
   WELCOME SECTION
================================ */
.welcome-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    animation: fadeIn 1s ease-in-out;
}

.welcome-container h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #2b7a78;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.welcome-container p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    color: #333;
    margin-bottom: 25px;
}

.welcome-container img {
    display: block;
    margin: 20px auto;
    width: 50%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ================================
   INFO BOX
================================ */
.info-box {
    max-width: 1500px;
    margin: 20px auto;
    padding: 25px;
    background: #f9f9f9;
    border-left: 6px solid #2b7a78;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.info-box h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2b7a78;
    text-align: center;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    color: #333;
}

/* ================================
   FOOTER
================================ */
.footer {
    background-color: #212529;
    color: #ddd;
    font-size: 0.95rem;
    border-top: 2px solid #444;
    padding: 15px 0;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

#visitorCount {
    color: #ffc107;
    font-weight: bold;
}

/* ================================
   ANIMATION
================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .header-banner {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }

    .header-logo {
        height: 70px;
        margin-bottom: 10px;
    }

    .header-title h1 {
        font-size: 1.4rem;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .welcome-container img {
        width: 90%;
    }
}
