:root {
  --black: #0b0b0b;
  --red: #e50914;
  --white: #ffffff;
  --gray: #b3b3b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* loader */
#loader {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#loader h1 {
  color: var(--red);
  font-size: 3rem;
  letter-spacing: 4px;
}

/* hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8vw;
}

.hero h1 {
  font-size: 4rem;
  color: var(--red);
}

.hero p {
  color: var(--gray);
  margin: 10px 0 30px;
}

.hero-buttons a {
  text-decoration: none;
  color: white;
  border: 2px solid var(--red);
  padding: 12px 25px;
  margin-right: 15px;
  transition: 0.3s;
}

.hero-buttons a:hover {
  background: var(--red);
}

.hero-buttons .outline {
  background: transparent;
}

/* sections */
.section {
  padding: 80px 8vw;
}

.section.dark {
  background: #111;
}

.section h2 {
  color: var(--red);
  margin-bottom: 30px;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #141414;
  padding: 20px;
  border-radius: 6px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(229,9,20,0.4);
}

/* contact */
form {
  max-width: 400px;
}

input, textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  background: #000;
  border: 1px solid #333;
  color: white;
}

button {
  background: var(--red);
  border: none;
  padding: 12px;
  color: white;
  cursor: pointer;
}
#three-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: black;
}
#logo {
  font-size: 4.5rem;
  letter-spacing: 4px;
  color: #e50914;
  /* text-transform: lowercase; */
  text-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
  transform-origin: center;
}
