@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
}
body {
  background-color: #000000;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  z-index: 1;
  transition: filter 0.5s ease;
}

.blur {
  filter: blur(8px);
}
.blur-two {
  filter: blur(8px);
}

.menu {
  z-index: 30;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2rem;
  animation: fadeIn 8s ease;
  transition: 3s;
}

.menu h1 {
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 2.5rem;
  opacity: 0.8;
  /* animation: slide-next 15s ease; */
}
/* .menu h1  {
  text-decoration: none;
  color: #fff;

} */

.menu h1:hover {
  opacity: 0.5;
}

/* Overlay styles */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  transition: opacity 0.5s ease;
  padding: 2rem;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.text-container {
  color: white;
  border-radius: 5px;
  width: 80%;
  text-align: right;
  animation: slide-in 0.5s ease;
  font-size: 1.5em;
}

.text-container .icons {
  margin-bottom: 2rem;
}
.text-container .icons img:hover {
  opacity: 0.5;
}

.text-container .icons img {
  width: 40px;
}

.text-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.text-container p {
  margin-bottom: 2rem;
}

.text-container a {
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
}
.email-sec a {
  width: 100% !important;
  font-size: 1.5rem !important;
  margin-left: -80px;
}

.text-container .email-sec:hover {
  opacity: 0.5;
}
.text-container .phone:hover {
  opacity: 0.5;
}

/* Slide-in effect */
/* @keyframes slide-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */
/* @keyframes slide-next {
  0% {
    opacity: 0.1;
    transform: translateY(-150%);

  }
  100% {
    opacity: 1;
    transform: translateY(0);

  }
} */

@media (max-width: 768px) {
  .menu {
    padding: 1.5rem;
    margin-bottom: 4rem;
  }
  .menu h1 {
    line-height: 2.4rem;
    font-size: 2em;

    /* margin-top: -10px; */
  }
  .overlay {
    padding: 1rem;
  }
  .text-container {
    width: 80%;
  }

  .text-container a {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  .video-container iframe {
    transform: translate(-37%);
  }
}

::-webkit-scrollbar {
  display: none;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap:0px; */
  padding: 30px;
  transition: 0.5s;
}
.overlay-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  transition: opacity 0.5s ease;
  padding: 2rem;
}
.hidden-two {
  opacity: 0;
  /* visibility: hidden; */
  pointer-events: none;
}

.gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 70%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}

.video-title {
  color: #fff;
  font-size: 1em;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-item {
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
}

.footer-item:hover {
  color: #ccc;
}

@keyframes slide-in {
  from {
    opacity: 0.1;
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1930px) {
  .gallery-container {
    margin-top: 2%;
    gap: 30px;
    grid-column-gap: 100px !important;
    margin-bottom: 0p;
  }
  .gallery-item img {
    width: 100%;
    margin-bottom: 0px !important;
  }
  .footer {
    right: 20px;
    bottom: 20px;
  }
  .footer-item {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px !important;
    padding: 0px !important;
    /* margin-right: 20px; */
    gap: 20px;
    margin-top: 10%;
  }
  .video-title {
    display: none;
  }
  .gallery-item img {
    max-width: 250px;
  }
  .overlay-two {
    padding: 10px;
  }

  .footer {
    right: 10px;
    bottom: 10px;
  }
  .footer-item {
    font-size: 1.8em !important;
  }
}

@media (orientation: landscape) {
  video,
  .video-container {
    width: 100vw;
    height: 100vh;
  }
}

/* 
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
  }
*/
