/* Keha ja HTML algväärtused */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

/* Video tausta stiil */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Tagamaks, et video on taustal */
}

/* Video kiht ja hall filter */
.video-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(211, 206, 206, 0.5); /* Läbipaistev hall kiht (0.5 on 50% läbipaistvusega) */
  z-index: 0; /* Hall kiht asub video peal, aga sisu all */
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1; /* Video jääb halli kihi alla */
  object-fit: cover; /* See katab kogu ekraani, säilitades proportsioonid */
  background-color: black; /* Kui video ei lae korralikult, siis must taust */
}

/* Taustavideo ülemine sisu */
.coming-soon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-align: center;
  position: relative; /* Sisu paigutamine üle video ja halli kihi */
  z-index: 1; /* Sisu on kõrgemal kui video ja hall kiht */
}

.content {
  padding: 40px 60px;
  border-radius: 10px;
  color: rgb(145, 131, 131);
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Jaluse stiil */
.footer {
  position: absolute;
  bottom: 20px;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}