body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    max-width: 100%;
    flex-wrap: wrap;
    box-sizing: border-box;
}

nav a {
    text-decoration: none;
    margin: 0 30px;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    flex-shrink: 1;
}
  
nav a:hover {
    color: #FFBEBE;
}

.bar-menu{
    display: none;
}

.popup-menu {
    display: none;
}

.overlay {
    display: none;
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 70px;
    height: 70px;
    font-size: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #22b859;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #454545;
    color: #fff;
    padding: 30px 50px 1px 50px;
    font-size: 17px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #f5a7a7;
    margin-top: 0;
}

.footer-section p {
    line-height: 1.6;
}

.profile-footer {
    flex: 2;
}

.profile-wrap {
    width: 400px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    width: 25px;
    height: 25px;
    display: flex;
    /* Gunakan Flexbox */
    justify-content: center;
    /* Pusatkan secara horizontal */
    align-items: center;
    /* Pusatkan secara vertikal */
    background-color: #FF6262;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff0000;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links ul li {
    margin-bottom: 17px;
}

.quick-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.quick-links ul li a:hover {
    color: #f5a7a7;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
    margin-bottom: 17px;
}

.contact-info p i {
    color: #FF6262;
    margin-right: 10px;
}

.copyright {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px; /* Jarak lebih kecil dari bawah */
        right: 20px; /* Jarak lebih kecil dari kanan */
        width: 60px; /* Ukuran lebih kecil untuk ponsel */
        height: 60px;
        font-size: 34px;
    }

    /* Navbar */
    .header-menu {
        display: none;
    }

    .bar-menu {
        display: block;
        font-size: 1.2rem;
    }

    .popup-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -200px; /* Awalnya berada di luar layar */
        width: 200px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease; /* Animasi slide-in */
        z-index: 1001; /* Di atas konten lainnya */
        display: flex;
        flex-direction: column;
        padding: 20px;
        box-sizing: border-box;
        color: #000000;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    
    .popup-menu.open {
        right: 0; /* Menu muncul di posisi ini */
    }
    
    .popup-menu i {
        font-size: 1.5rem;
        cursor: pointer;
        margin-bottom: 20px;
    }
    
    .popup-menu a {
        margin: 15px 0;
        text-decoration: none;
        color: #000;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    
    .popup-menu a:hover {
        color: #FFBEBE;
    }
    
    /* Overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
        transition: opacity 0.3s ease;
    }
    
    .overlay.show {
        display: block; /* Tampilkan overlay */
    }

    /* Footer */
    footer {
        font-size: 15px;
    }
    .profile-wrap {
        width: 350px;
        margin-bottom: 20px;
    }
}