/* Base Reset */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  z-index: 1000;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon.left,
.header-icon.right {
  flex: 1;
  box-sizing: border-box;
}

.header-icon.left {
  justify-content: flex-start;
  padding-left: 40px;
}

.header-icon.right {
  justify-content: flex-end;
  padding-right: 40px;
}

.header-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  background: transparent;
}

.header-icon .icon:hover {
  transform: scale(1.1);
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.header-logo img {
  max-height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

/* Video Background */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: -1;
  pointer-events: none;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

/* Icons */
.icon {
  width: 28px;
  height: 28px;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: transparent;
  padding: 20px 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
  position: relative;
}

.footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer .social-icons a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer .social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer .social-icons a:hover {
  transform: scale(1.2);
  opacity: 0.7;
}

.footer .copyright {
  color: white;
  font-size: 12px;
  margin-top: 5px;
}

/* Footer visibility logic */
.desktop-footer {
  display: block;
}

.mobile-footer {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .site-header {
    height: 80px;
    padding: 0 10px;
  }

  .header-icon.left {
    padding-left: 15px;
  }

  .header-icon.right {
    padding-right: 35px;
  }

  .header-logo img {
    max-height: 36px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 120px;
  }

  .footer {
    padding: 10px 10px 0;
    gap: 1.2rem;
  }

  .footer .social-icons {
    gap: 1.2rem;
    max-width: 220px;
    margin: 0 auto;
  }

  .footer .copyright {
    font-size: 15px;
    line-height: 1.4;
  }

  .desktop-footer {
    display: none;
  }

  .mobile-footer {
    display: block;
  }
}
