/* Import Google Font: Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap');

/* Reset and global settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body style */
body {
  font-family: 'Open Sans', sans-serif;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: black;
}

/* Fullscreen video background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback background image */
.fallback-bg.no-video {
  background: url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
}

/* Central content container */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1;
}

/* Logo image */
.logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* Coming soon title */
.coming-title {
  font-size: 2rem;
  font-weight: 300;        /* Thin font */
  color: #545454;             /* Light gray */
  text-align: center;
  margin-top: 10px;
}

/* Footer styles */
footer {
  background-color: rgba(96, 96, 96, 0.6);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ddd;
  font-size: 0.9rem;
  z-index: 1;
}

/* Footer logo */
footer img {
  height: 30px;
}

/* Copyright on the right */
.footer-copyright {
  text-align: right;
}

/* Default fallback background (before JS error triggers) */
.fallback-bg {
  background: url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
}
