@font-face {
    font-family: Tomorrow-Regular;
    src: url("Tomorrow-Regular.ttf");

}
/* General styles */

.Header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.logolink{
    display: block;
}
#logo{
    margin-top: 10px;
    margin-left: 10px;
    width: 117.86372007366482504604051565378px;
    height: 50px;
}
.menu-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 3;
  }
  
.hamburger {
    width: 30px;
    cursor: pointer;
    margin: 20px;
    margin-right: 50px;
    transition: transform 0.4s ease;
}

.hamburger.slide-out {
    transform: translateX(-180px); /* Move the hamburger icon out of view */
    z-index: 2;
}

.hamburger {
    transform: translateX(0); /* Resets to original position */
  }

.line {
    width: 100%;
    height: 4px;
    right: 0;
    z-index: 2;
    background-color: rgb(255, 255, 255);
    margin: 5px 0;
    transition: 0.4s;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #000000;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
}

.side-menu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    z-index: 1;
}

.side-menu a:hover {
    color: #f8ba00;
}

.side-menu.active {
    width: 250px;
    opacity: 0.8;
}

.class{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    font-size: 30px;
}

.content{
    margin-top: 15%;
    color: #ffbf00;
}

.gallerytitle {
    color: black;
    text-shadow: -1px -1px 0 #f8ba00, 1px -1px 0 rgb(248, 186, 0), -1px 1px 0 #f8ba00, 1px 1px 0 #f8ba00;
    font-size: 50px;
    width: 100%;
}
/* General styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: Tomorrow-Regular;
    color: #ffcc00;
  }
  
  /* Header */
  .gallerytitle {
    color: black;
    text-shadow: -1px -1px 0 #f8ba00, 1px -1px 0 rgb(248, 186, 0), -1px 1px 0 #f8ba00, 1px 1px 0 #f8ba00;
    font-size: 50px;
    width: 100%;
}
  
  /* Gallery */
  .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  .gallery-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .gallery-item {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    background-color: #333;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Title in the middle of the image */
  .gallery-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffcc00;
    text-align: center;
    z-index: 5;
  }
  
  /* Empty gallery item */
  .gallery-item.empty {
    width: 200px;
    height: 200px;
    background-color: #333;
    border-radius: 10px;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .modal-slideshow {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 500px;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  .prev:hover, .next:hover {
    background: #ffcc00;
  }
  
  .gallery-item::after {
    content: attr(data-title);  /* Title shown on hover */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* Center the text */
    color: white;
    font-size: 24px;  /* Larger font size */
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6); /* Dark background behind text */
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;  /* Hidden by default */
}

.gallery-item:hover::after {
    display: block;  /* Show on hover */
}

.gallery-item:hover img {
    filter: brightness(40%);
    transition: 0.5s;
}


footer {
  display: flex;
  justify-content: center;
  gap: 7%;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
}

.ytlink, .instalink, .fblink, .gilink, .lilink {
  height: 20px;
  width: 20px;
}
.content {
  margin-top: 15%;
  color: #ffbf00;
}

.footer-divider {
  
  border: 0.5px solid #444; /* Thin line with dark gray */
  margin: 10px 0;
}

.credits {
  font-size: 14px;
  color: #ccc; /* Light gray for text */
  line-height: 1.5; /* Improve readability */
  text-decoration: none;
}

.credits strong {
  color: #f9a825; /* Highlight developer names */
}

.credits p {
  margin: 5px 0;
  text-align: center;
  
}
.credits a{
  
  color: #ccc;
}



@media (max-width: 768px) {
  .Header {
    padding: 0;
}

#logo {
    width: 90px;
    height: 40px;
}
.content {
    margin-top: 35%;
}

.hamburger {
    width: 25px;
    margin-right: 20px;
}

.gallerytitle {
  font-size: 6vw;
}
  .gallery-row {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: flex-start; /* Start items from the top */
    gap: 20px; /* Add space between items */
    margin-top: 20%; /* Push content down to add top margin */
    padding: 0 10px; /* Add padding to prevent items from touching screen edges */
  }

  .gallery-item {
    width: 90%; /* Take most of the screen width */
    max-width: 300px; /* Limit the maximum width */
    height: auto; /* Adjust height proportionally */
    margin: 0 auto; /* Center the items horizontally */
  }

  .gallery-title {
    font-size: 1.2rem; /* Adjust font size for smaller screens */
    text-align: center; /* Ensure text is centered */
  }
  footer {
    margin-top: 10%;
}
}



/* Responsive Design */
@media (max-width: 768px) {
  .social-links img {
      height: 25px; /* Smaller icons */
  }

  .credits {
      font-size: 12px; /* Smaller font for smaller screens */
  }

  .social-links {
      gap: 20px; /* Adjust gap for smaller screens */
  }
}