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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
}

/* ------------------------
   NAV
------------------------- */

.nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 10;
}

.contact-btn {
  border: 1px solid #fff;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

/* ------------------------
   HERO
------------------------- */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(60px, 14vw, 200px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.subtitle {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
}

.scroll-down {
  margin-top: 60px;
  font-size: 28px;
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  transition: 0.3s ease;
}

.scroll-down:hover {
  opacity: 1;
}

/* ------------------------
   ABOUT SECTION
------------------------- */

.about {
  background: #111;
  padding: 120px 20px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

/* ------------------------
   CONTACT PAGE
------------------------- */

.contact-page {
  background: #000;
  min-height: 100vh;
  color: #fff;
}

.contact-section {
  padding: 140px 20px 100px;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 700px;
}

.contact-container h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-row {
  display: flex;
  gap: 20px;
}

.input-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: 4px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fff;
}

.contact-form button {
  align-self: flex-start;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #fff;
  color: #000;
}
