:root {
  --black: #000;
  --white: #fff;
  --gray: #9a9a9a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
}

.nav a {
  margin-left: 32px;
  color: #9a9a9a;
  text-decoration: none;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.nav a:hover {
  color: #ffffff;
}
/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.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(2.5rem, 6vw, 4rem);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.hero p {
  color: var(--gray);
  margin-bottom: 30px;
}

.link {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--white);
  padding-bottom: 6px;
}

/* SECTIONS */
.section {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 120px 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* SERVICES */
.services h2 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}
/* PROJECTS */
.projects {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.project span {
  color: #9a9a9a;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}
/* ABOUT */
.about p {
  max-width: 700px;
  color: var(--gray);
  font-size: 1.05rem;
}

/* CONTACT SECTION CENTERED */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center; /* Zentriert horizontal */
  justify-content: center;
  text-align: center; /* Zentriert den Text innerhalb der Elemente */
  min-height: 80vh; /* Gibt der Sektion genug Raum */
}

.contact h2 {
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.contact-form {
  width: 100%;
  max-width: 500px; /* Begrenzt die Breite für bessere Lesbarkeit */
  margin: 0 auto; /* Zentriert den Block selbst */
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form button {
  align-self: center; /* Zentriert nur den Button */
  margin-top: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

.contact-direct {
  margin-top: 50px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 12px 0;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

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

.contact-form button {
  margin-top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.contact-direct {
  margin-top: 40px;
  color: #777;
}

.contact-direct a {
  color: #777;
  text-decoration: none;
}

.contact-direct a:hover {
  color: #fff;
}

.contact a {
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  color: var(--gray);
  font-size: 0.85rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

/* Add/Update these in your style.css */

.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #111;
  margin-bottom: 30px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project {
    margin-bottom: 120px;
}

/* Smoothly hide filtered projects */
.project {
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block; /* ensure they are block by default */
}

.project.hide {
  display: none; /* removes from layout */
}