body {
    font-family: sans-serif;
    background: #111;
    color: #f5f5f5;
}

.header {
    display: flex;
    align-items: center;
    background: #333;
    color: #f5f5f5;
    padding: 7px 10px;
}
.header-logo {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 10px #0ff;
}
.menu-icon {
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}

.iklan {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 0;
    margin-top: 2cm;
}

.header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}



/* Sidebar */
.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: #555;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1001;
}

.sidebar a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #ddd;
    display: block;
    transition: 0.2s;
    cursor: pointer;
}

.sidebar a:hover {
    background-color: #333;
}

.sidebar .tentang-teks,
.kontak-links {
    padding: 12px 20px;
    font-size: 14px;
    color: #f5f5f5;
}

.tentang-teks,
.kontak-links {
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.tentang-teks.show,
.kontak-links.show {
    visibility: visible;
    max-height: 500px; /* Adjust to maximum content */
    opacity: 1;
}

.kontak-links a {
    color: #f5f5f5;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin: 8px 0;
}

.kontak-links a:hover {
    color: #0073e6;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.main {
    text-align: center;
    padding: 40px 20px;
}

.profile-img {
    width: 320px;
    height: 100px;
    object-fit: cover;
}

h1 {
    margin-top: 10px;
    font-size: 24px;
}

.links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    background: #444;
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.link-button:hover {
    background: #555;
}

/* Styling for images */
.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2cm;
}

.image-gallery img {
    width: auto;
    height: auto;
    margin-bottom: 15px;
    max-width: 100%;
}

.akhir {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 2cm;
    line-height: 0;
}
.sidebar .social-links a {
    font-size: 24px;
    padding: 12px 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.sidebar .social-links a:hover {
    background-color: #ddd;
}