/* Highlight active page */
.nav-links a.active {
    background-color: #321fe0;
    border-radius: 5px;
    font-weight: bold;
    color: rgb(252, 252, 252) !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background-image: radial-gradient(circle, #2e8b57 5%, transparent 7%); */
    background: #000 url('picgal/img/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: grid;
    align-items: center;
    background-size: 100% 100%;
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;

    /* Ensure Content Doesn't Hide Under Navbar */
    margin: 0;
    padding-top: 0px;

}

/* For smaller screens (e.g., mobile and tablets) */
@media (max-width: 768px) {
    body {
        display: grid;
        align-items: center;
        margin: 0;
        font-family: Arial, sans-serif;
        background: url('/picgal/img/bg1.jpg') no-repeat center center fixed;
        background-color: #000;
        background-size: cover;

    }
}




/* ======================= Hamburger Menu ======================= */
/* Hamburger Menu (Hidden on Desktop) */
.hamburger-menu {
  font-size: 40px;
  cursor: pointer;
  display: none;
  color: white;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
    /* Show the menu icon */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    text-align: left;
    box-shadow: -3px 3px 10px rgba(190, 179, 179, 0.74);
  }

  .nav-links a {
    display: block;
    padding: 15px 40px;
  }

  .nav-links.active {
    display: inline-block;
    /* Show menu when active */
    border: #1dbd08 2px solid;
  }
}