/*
Theme Name: Nebulum Studios
Theme URI: https://nebulumstudios.com
Author: Nebulum Studios
Description: A cinematic fullscreen landing page theme built for VFX, animation, and creative studios. Optimized for Beaver Builder.
Version: 1.0
License: GPLv2 or later
Text Domain: nebulumstudios
*/

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 999;
  backdrop-filter: blur(6px);
}

header .logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
}

header nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

header nav a:hover {
  color: #00b4d8;
}

section.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #000;
  overflow: hidden;
}

section.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

section.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-content a {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #00b4d8;
  border-radius: 40px;
  color: #00b4d8;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-content a:hover {
  background: #00b4d8;
  color: #000;
  box-shadow: 0 0 20px #00b4d8;
}

footer {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: #000;
  color: #777;
  letter-spacing: 1px;
}
