/* Import Local Hypodermic Font */
@font-face {
  font-family: 'Hypodermic';
  src: url('./fonts/Hypodermic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif; /* Default for body & button */
  letter-spacing: -0.02em; /* -2% letter spacing */
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Black Overlay */
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* opacity effect */
  z-index: 0;
}

/* Overlay Content */
.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.content h1 {
  font-family: 'Hypodermic', sans-serif; /* Heading uses Hypodermic */
  font-size: 72px;
  font-weight: bold;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ffffff, #E4903A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

/* Button Style */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px; /* capsule shape */
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn i {
  font-size: 1.2rem;
}

.btn:hover {
  background: #E4903A; /* Behance blue */
  color: #fff;
  transform: translateY(-2px);
}
