* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kaisei Decol", serif;
  overflow-x: hidden;
}

/* Video Background Container */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Overlay for better text readability */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* Header */
header {
  position: relative;
  z-index: 10;
  padding: 20px 40px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
}

.logo-text span {
  font-weight: 600;
}

/* Main Content */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
  text-align: center;
  color: white;
  padding: 40px 20px;
}

h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.highlight {
  color: #df2532;

  font-weight: 500;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
  color: white;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.3);
  top: 11px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  header {
    padding: 15px 20px;
  }

  .logo-text {
    font-size: 20px;
  }

  footer {
    font-size: 13px;

    top: 65px;
  }
}

.logo-container img {
  width: 13%;
  object-fit: contain;
}
