*{
    margin: 0;
    padding: 0;
    color: white;
    background-color: black;
    font-family: 'Inconsolata';
}

#logo{
  color: white;font-family: "Engagement", serif;
  font-weight: 400;
  font-style: normal;
}


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 36px;
}

#icons a{
    padding: 0 5px;
}

.main-container {
    text-align: center;
  }
  
  .main-video {
    width: 40%;
    height: 0%;
    border: 2px solid black;
    margin-bottom: 10px;
    border-radius: 15px;
  }
  
  .thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .thumbnail video {
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: border 0.3s;
    border-radius: 15px;
  }
  
  .thumbnail.active video {
    border: 2px solid red;
  }
  @media (max-width: 768px) {
    .main-video {
      width: 100%;
    }
  
    .thumbnail video {
      width: 80px;
    }
  }
  
  @media (max-width: 480px) {
    .thumbnail video {
      width: 60px;
    }
  }

#about{
    padding: 1% 15%;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    width: 90%;
    max-width: 1200px;
    padding-left: 8%;
    margin-top: 60px;
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.image-container img:hover {
    opacity: 0.4;
    transform: scale(1.1);
}

/* View More Button */
.view-more {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.view-more-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s ease-in-out;
}

.view-more-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
    border: 2px solid white;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

#caption {
    text-align: center;
    color: white;
    padding: 10px;
}


#contact {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    padding: 20px;
}
#contact > div{
    padding: 2.3%;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Modal content */
.custom-modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Modal title */
.custom-modal h2 {
  margin-bottom: 20px;
  color: #333;
}

/* Buttons */
.modal-buttons {
  display: flex;
  justify-content: space-around;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-facebook {
  background-color: #3b5998;
}

.btn-facebook:hover {
  background-color: #2e4676;
}

.btn-youtube {
  background-color: #ff0000;
}

.btn-youtube:hover {
  background-color: #cc0000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#vol > i{
  font-size: xx-large;
}