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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #000;
}

/* Container layout */
.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Left: Fullscreen video */
.video-section {
  flex: 0 0 65%;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: Welcome panel */
.content-section {
  flex: 0 0 35%;
  background-color: #000;
  color: white;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.subheading {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #ccc;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

/* Primary: Sign Up */
.btn.primary {
  background-color: #007aff;
  color: white;
}

.btn.primary:hover {
  background-color: #005ecb;
}

/* Secondary: Log In */
.btn.secondary {
  background-color: #333;
  color: white;
}

.btn.secondary:hover {
  background-color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .video-section {
    flex: none;
    height: 40vh;
  }

  .content-section {
    flex: none;
    height: 60vh;
    padding: 2rem;
    align-items: center;
    text-align: center;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
