/*
Theme Name: Building The Next
Theme URI: https://example.com/building-the-next
Author: ChatGPT
Description: A minimalist full-screen video background landing page theme with centered headline.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: building-the-next
*/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #f7f7f2;
}

body {
  overflow-x: hidden;
}

.video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: -1;
}

.video-hero__title {
  margin: 0;
  padding: 0 24px;
  color: #f8f8f0;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.65);
}

.admin-bar .video-hero {
  min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
  .admin-bar .video-hero {
    min-height: calc(100vh - 46px);
  }
}
