* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #111;
  color: #fff;
}

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

.logo {
  font-weight: 700;
  letter-spacing: 2px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #c59d5f;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background: #c59d5f;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
}

.section {
  padding: 100px 50px;
  text-align: center;
}

.dark {
  background: #1a1a1a;
}

.services {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.services div {
  max-width: 300px;
}

.portfolio {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.project {
  width: 300px;
  height: 200px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: 0.3s;
}

.project:hover {
  background: #c59d5f;
  color: #000;
}

form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, textarea {
  padding: 15px;
  border: none;
  border-radius: 4px;
}

button {
  padding: 15px;
  background: #c59d5f;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

footer {
  padding: 40px;
  text-align: center;
  background: #000;
}