/* --------------------
   GLOBAL STYLES
-------------------- */
body {
  font-family: 'sora', sans-serif;
  background-color: #000;
  margin: 0;
  padding: 0;
  color: white;
}

/* --------------------
   HEADER
-------------------- */
header {
  position: relative;
  z-index: 10;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {

  align-items: center;
}
header a img {
  display: block;
  height: 60px;
  width: auto;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 40px;
  font-size: 16px;
  font-family: 'sora';
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff1654;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* --------------------
   VIDEO BACKGROUNDS
-------------------- */
.video-circle {
  position: fixed;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.video-left {
  width: 40vw;
  height: 40vw;
  left: -20vw;
  top: 15%;
}

.video-right {
  width: 45vw;
  height: 45vw;
  right: -20vw;
  top: -5%;
}

.video-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(-10deg) brightness(0.6) saturate(2);
}

/* --------------------
   GALLERY ANIMATION
-------------------- */
.gallery-container {
  display: flex;
  gap: 20px;
  padding: 0 60px;
  margin-top: 120px;
  animation: scroll 30s linear infinite;
}

.gallery-container:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-item {
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* --------------------
   FOOTER
-------------------- */
footer {
  background: #000;
  color: white;
  padding: 50px 80px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #400000;
  padding-bottom: 30px;
}

.footer-section {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-column p {
  margin: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-column p:hover,
.contact-info p:hover {
  color: #f33;
}

.contact-info {
  max-width: 300px;
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 12px;
  color: #999;
}

/* --------------------
   RESPONSIVE DESIGN
-------------------- */

/* Tablets */
@media (max-width: 1024px) {
  header {
    padding: 20px 40px;
  }

  nav a {
    margin-left: 25px;
    font-size: 15px;
  }

  .banner-container {
    width: 90%;
    margin: 300px auto;
    padding: 30px;
  }

  .h2 {
    font-size: 50px;
  }

  .highlight {
    font-size: 55px;
  }

  .about-content {
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
  }

  .para {
    margin: 0 auto;
    width: 80%;
    font-size: 14px;
  }

  .video-left,
  .video-right {
    width: 60vw;
    height: 60vw;
  }

  footer {
    padding: 40px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    margin: 10px 15px 0 0;
    display: inline-block;
  }

  .banner-container {
    width: 90%;
    margin: 200px auto;
    height: auto;
    padding: 25px;
  }

  .h2 {
    font-size: 35px;
    text-align: center;
  }

  .highlight {
    font-size: 40px;
  }

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 28px;
  margin: 40px auto;
  width: 80%;
  max-width: 900px;
}

  .para {
    width: 90%;
    margin: 15px auto;
    text-align: justify;
    font-size: 13px;
  }

  .video-left,
  .video-right {
    display: none; /* hide background videos on small devices */
  }

  .gallery-container {
    flex-wrap: nowrap;
    overflow-x: scroll;
    animation: none;
    padding: 20px;
  }

  .gallery-item {
    min-width: 200px;
  }

  footer {
    padding: 30px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-section {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo {
    justify-content: flex-start;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .h2 {
    font-size: 28px;
  }
  .highlight {
    font-size: 32px;
  }
  nav a {
    font-size: 14px;
  }
}
