body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #191970;
    overflow-x: hidden; /* Prevent horizontal scroll */
    user-select: none; 
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* Navbar */
nav {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;  /* logo di kiri, menu di kanan */
  align-items: center;
  background-color: #155084;
  color: #fff;
  padding: 0 40px;                /* kasih ruang kiri-kanan */
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  box-sizing: border-box;
}

nav .logo {
  font-family: "Fugaz One", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

nav .menu {
  display: flex;
  gap: 25px;                       /* spasi antar link */
  flex-wrap: wrap;                 /* biar ga kepotong di layar sempit */
}

nav .menu a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

nav .menu a:hover {
  color: #ddd;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  nav .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #155084;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 8px;
  }

  nav .menu a {
    padding: 10px;
    text-align: center;
    font-size: 18px;
  }

  nav .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


/* About */
/* Container section */
#home {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #191970;
    width: 80%;
    align-items: center;
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 50px;
}

/* Content container */
.container {
    flex: 1;
    padding: 20px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Heading styling */
#home h1 {
    font-family: 'Arial', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin: 0 0 10px;
    text-align: left;
    font-weight: bold;
}

#home h2 {
    font-family: 'Arial', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin: 0 0 10px;
    text-align: left;
    font-weight: bold;
    margin-top: 20px;
}

/* Paragraph styling */
#home p {
    font-size: 2rem;
    line-height: 1.8;
    color: #FFFFFFCC;
    max-width: 90%; /* Ensures the text doesn't stretch too wide */
    text-align: left;
}

/* Styling for the image */
aside {
    width: 50%; /* Image section width */
    display: flex;
    justify-content: center;
    align-items: center;
}

#pp {
    width: 340px; /* Adjust image size */
    height: 340px;
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image covers the circle */
    border: 0px solid black; /* Optional: Add a border around the image */
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
}


/* Container untuk ikon */
.icon-links {
    margin-top: 20px;
    display: flex;
    gap: 15px; /* Jarak antar ikon */
}

/* Styling ikon */
.icon-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Efek hover */
.icon-links img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* end home section */