
    body {
      margin: 0; 
      padding: 0;
      font-family: 'HelveticaNeueLight', sans-serif;
      background: #232222; 
      color: #fff;
    }
    #loginForm {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh; /* Fill the entire viewport height */
      text-align: center;
    }
    #loginForm h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    #loginForm p {
      font-size: 1rem;
      margin-bottom: 2rem;
      color: #fff;
    }
    #loginForm input[type="password"] {
      padding: 0.75rem 1rem;
      font-size: 1rem;
      width: 300px;
      max-width: 80%;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      outline: none;
      gap:2rem ;
    }
    #loginForm button {
      padding: 0.75rem 1.5rem;
      background-color: #487cbe;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 1rem;
      margin-bottom: 1rem;
      gap:2rem ;
    }
    #loginForm button:hover {
      background-color: #333;
    }
    #loginForm a {
      text-decoration: none;
      color: #fff;
      font-size: 0.95rem;
    }
    #loginForm a:hover {
      text-decoration: underline;
    }

    /* Hide the portfolio content until the correct password is entered */
    #protectedContent {
      display: none;
    }

    /* Basic portfolio styles (adjust or remove as needed) */
    .header-nav {
      background: #f8f8f8;
      padding: 2rem;
    }
    .nav-links {
      display: flex;
      gap: 3rem;
      justify-content: center;
    }
    .nav-link {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
    }
    .gallery-section {
      padding: 1rem;
    }
    .section-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      text-align: center;
    }
    .gallery-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      justify-content: center;
    }
    .gallery-column {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    .gallery-image {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .video-section {
      padding: 1rem;
    }
    .video-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      justify-content: center;
    }
    .video-wrapper iframe {
      border: none;
    }
    .footer {
      background: #f8f8f8;
      padding: 1rem;
      margin-top: 2rem;
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      justify-content: center;
    }
    .footer-about p,
    .footer-text {
      max-width: 400px;
      line-height: 1.4;
    }
    .social-icons {
      display: flex;
      gap: 2rem;
    }
    .social-icon {
      display: inline-block;
    }

    /* Optional modal styling if you use gallery.js for a lightbox */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 60px;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.9);
    }
    .modal-content {
      margin: auto;
      display: block;
      max-width: 80%;
    }
    .modal-image {
      width: 100%;
      height: auto;
      display: block;
    }
    .modal-close {
      position: absolute;
      top: 15px; right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }
    .modal-close:hover,
    .modal-close:focus {
      color: #bbb;
      text-decoration: none;
    }
    .preview-container {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 1rem 0;
    }
    .preview {
      width: 50px;
      height: 50px;
      object-fit: cover;
      cursor: pointer;
    }
    .modal-prev,
    .modal-next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      color: #fff;
      font-weight: light;
      font-size: 1rem;
      transition: 0.3s;
      border: none;
      background: transparent;
    }
    .modal-prev {
      left: 15px;
    }
    .modal-next {
      right: 15px;
    }
    .modal-prev:hover,
    .modal-next:hover {
      color: #999;
    }
