*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background-color: #eef2f4;
    /* GAMBAR CLOUDINARY (jika berhasil load)
    background-image: url(https://res.cloudinary.com/dp0u9zs4y/image/upload/body2.jpg),
    linear-gradient(
            135deg,
            #0f4c75,
            #4489be,
            #79c0f0
    ); */
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
}

header {
  height: 16vh;
	color: #210404;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  background-image: url();
  background-size: cover;
  background-position: 0 -230px;
}

.logo {
  display: flex;
  width: 8%;
	height: 90%;
	margin-left: 10px;
}

.judul-1 {
    flex: 1;
    text-align: center;
    color: #034d4d;
}

.judul-1 h1 {
    font-size: 24px;
    letter-spacing: 1px;
}

.judul-1 h2 {
    font-size: 18px;
    font-weight: 600;
}

.judul-2 {
    margin-top: 5px;
    font-size: 14px;
    color: #b89b2d; /* gold profesional */
    font-weight: 600;
}


.logo-2 {
  display: flex;
  width: 10%;
	height: 90%;
  padding-left: 10px;
}

/* NAVBAR */
.navbar {
    width: 100%;
    background-color: rgba(197, 217, 214, 0.6);
    position: relative;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;   /* INI KUNCI: posisi tengah */
    align-items: center;
}
.navbar ul li {
    margin: 0 15px; /* jarak antar menu */
}
.navbar ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 10px;
    display: block;
}
.navbar ul li a:hover {
    background-color: #dbe7e5;
    border-radius: 4px;
}

.konten {
       /* GAMBAR CLOUDINARY (jika berhasil load) */
    background-image: url(https://res.cloudinary.com/dp0u9zs4y/image/upload/body2.jpg),
    linear-gradient(
            135deg,
            #0f4c75,
            #4489be,
            #79c0f0
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 18vh);
}


/* COUNTER PENGUNJUNG */
.visitor-counter {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 15px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
/* FOOTER */

/* COUNTER DI FOOTER */
.footer-counter {
    margin-top: 2px;
    font-size: 15px;
    color: #555;
}
.counter-label {
    background-color: #333333;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 6px;
    font-size: 15px;
}


.footer {
    background-color: #f5f5f5;
    padding: 25px 0;
}

.footer-inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; /* kiri - tengah - kanan */
}

/* KIRI & KANAN (GRUP FOTO) */
.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left img,
.footer-right img {
    height: 150px;        /* BESAR, TAPI AMAN */
    max-height: 150px;    /* ⬅️ PENGAMAN */
    width: auto;
}


/* TENGAH (TEKS) */
.footer-content {
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;              /* KUNCI: teks tetap di tengah */
}

/* BLOK FOTO + CAPTION */
.footer-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* FOTO */
.footer-person img {
    height: 200px;        /* ukuran aman */
    max-height: 200px;
    width: auto;
}

/* CAPTION */
.footer-caption {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #333;
}

.footer-caption strong {
    font-size: 13px;
}

/* Responsive (HP) */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
    }

    .footer-left img,
    .footer-right img {
        height: 70px;
    }

    .footer-content {
        order: 2;
    }
   
    .footer-person img {
        height: 70px;
        max-height: 70px;
    }

    .footer-caption {
        font-size: 11px;
    }
}

