body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f4f4f4;
  background: url("images/bg.png") no-repeat center center fixed;
  background-size: cover;
  height: 200px;

}

nav {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
}

nav a {
  display:block;
  font-align: right;
  text-decoration: none;
  font-size: 14pt;
  font-weight: 600;
  color: #333;
  padding: 4px 22px;
}

nav a:hover {
  border-bottom: solid 2px #4911F0;
}

nav a:active {
  color: #4911F0;
}

nav p {
  display:block;
  font-align: right;
  text-decoration: none;
  font-size: 14pt;
  font-weight: 600;
  color: #4911F0;
  padding: 4px 22px;
  margin: 0;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

h2 {
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  font-size: 24pt;
  line-height: 1.6;
  color: #333;
  margin: 80px 20% 0.25em 20%;
  max-width: 1000px;
  overflow-wrap: break-word;
  border-bottom: solid 1px #ddd;
  text-align: center;
}

p.subh2 {
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  font-size: 14pt;
  line-height: 1.6;
  color: #666;
  margin: 0 20% 2em 20%;
  max-width: 1000px;
  overflow-wrap: break-word;
  text-align: center;

}

p.text {
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  font-size: 14pt;
  line-height: 1.6;
  color: #000;
  width: 60%;
  margin: 0 20% 1em 20%;
  max-width: 1000px;
  overflow-wrap: break-word;
  text-align: justify;
}

.img-right {
  float: right;
  margin: 9px 0 10px 15px; 
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}



 /* GALLERY GRID */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }

  .gallery img {
    width: 100%;
    height: 200px;   
    object-fit: cover; 
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.gallery img {
}


  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }

  /* CLOSE BUTTON */
  .close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: white;
    cursor: pointer;
  }

  /* ARROWS */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
  }

  .arrow.left {
    left: 20px;
  }

  .arrow.right {
    right: 20px;
  }

  /* MOBILE TWEAKS */
  @media (max-width: 600px) {
    .arrow {
      font-size: 30px;
    }
    .close {
      font-size: 26px;
    }
  }

 .video-container {
      width: 40%;
      max-width: 900px;
      margin: 20px auto;
    }
    .video-container video {
      width: 100%;
      height: auto;
      border-radius: 12px;
    }

  .contact-container {
    width: 600px;
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

label.contact {
    display: block;
    margin: 15px 0 0 25px;
    font-weight: bold;
  }

  input.contact, textarea.contact {
    width: 530px;
    padding: 10px;
    margin: 5px 25px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  textarea.contact {
    resize: vertical;
    min-height: 120px;
  }

  button.contact {
    margin: 20px 25px 0 25px;
    width: 550px;
    padding: 12px;
    background: #0a5cff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }

  button.contact:hover {
    background: #0846c7;
  }




@media (max-width: 768px) {
  .menu-toggle {
display: block;

 }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 30px;
    width: 200px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  nav.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }

  nav li {
    text-align: right;
  }

  nav a {
    display: block;
    padding: 10px 20px;
  }
  nav a:hover {
    border: 0;
    background: none;
  }

p.text {
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  font-size: 12pt;
  line-height: 1.6;
  color: #333;
  margin: 0 10% 1em 10%;
  max-width: 65ch;
  overflow-wrap: break-word;
}

  .contact-container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

label.contact {
    display: block;
    margin: 15px 0 0 25px;
    font-weight: bold;
  }

  input.contact, textarea.contact {
    width: 80%;
    padding: 10px 5%;
    margin: 5px 5%;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  textarea.contact {
    resize: vertical;
    min-height: 120px;
  }

  button.contact {
    margin: 20px 5% 0 5%;
    width: 90%;
    padding: 12px 0;
    background: #0a5cff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }

  button.contact:hover {
    background: #0846c7;
  }



}





main {
  padding: 20px;
}


footer {
  background: #f4f4f4;
  text-align: center;
  padding: 15px;
}

