* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: black;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-desktop,
.video-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-mobile {
  display: none;
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 120px;
}

.image-content-wrapper {
  position: relative;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.image-content-wrapper.visible {
  opacity: 1;
}

.image-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.home {
  position: absolute;
  top: 15%;
  right: 13%;
  z-index: 10;
}

.home a {
  color: #010101;
  font-size: 1px;
  background: transparent;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

.content-container {
  position: absolute;
  top: 21%;
  left: 22%;
  width: auto;
  height: auto;
  z-index: 3;
  color: black;
  text-align: left;
  padding: 20px;
  display: block;
}

/* === Social Icons: Desktop Styling === */
.footer-bar {
  display: flex;
  align-items: center;
  gap: 1px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
}

.social-icons a {
  color: black;
  font-size: 18px;
  padding: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.4);
  /* Optional hover color:
  color: #e60794;
  */
}

/* Optional: Scale up Contact Us and Founder links */
.footer-links a[href="contact.html"]:hover,
.founder-link:hover {
  transform: scale(1.1);
}

/* === Mobile Styling === */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }

  .image-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 95%;
    max-width: none;
    padding: 0;
    height: auto;
  }

  .image-overlay img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
  }

  .image-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home {
    top: 83%;
    right: 44%;
  }

  .home a {
    font-size: 1px;
    width: 45px;
    height: 45px;
    padding: 0;
  }

  /* Responsive Social Icon Styling */
  .footer-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
    gap: 6px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .social-icons a {
    font-size: 14px;
    padding: 4px;
  }

  .content-container {
    top: 45px;
    left: -50px;
    width: 100%;
    height: 100%;
  }
}

/* Extra small screen tweaks */
@media (max-width: 400px) {
  .social-icons a {
    font-size: 12px;
    padding: 2px;
  }
}
