/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#bgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 2s ease-out;
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 8vw;
  margin-bottom: 0.2em;
  letter-spacing: 2px;
}

h2 {
  font-size: 5vw;
  font-weight: 400;
  margin-bottom: 0.5em;
}

p {
  font-size: 4vw;
  color: #ccc;
}

.contact p {
  font-size: 3.5vw;
  margin-top: 1em;
  color: #ddd;
}

@media (min-width: 768px) {
  h1 { font-size: 3.5em; }
  h2 { font-size: 2em; }
  p, .contact p { font-size: 1.2em; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
