body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #000;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #000;
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

nav ul {
  display: flex;
  gap: 2em;
  list-style: none;
}

nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.hero-video {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

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

.hero-video .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2em;
}

.hero-video h1 {
  font-size: 3em;
  margin-bottom: 0.3em;
}

.hero-video p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 0;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ccc;
}

.section {
  padding: 5em 0;
}

h2 {
  text-align: center;
  margin-bottom: 2em;
  font-size: 2.5em;
  color: #fff;
}

.service {
  padding: 2em;
  border: 1px solid #444;
  margin: 1em 0;
}

.dark {
  background: #111;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
}

.gallery img {
  width: 100%;
  border: 2px solid #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 600px;
  margin: auto;
}

input, textarea {
  padding: 1em;
  background: #111;
  color: white;
  border: 1px solid #444;
  font-size: 1em;
}

footer {
  background: #000;
  text-align: center;
  padding: 2em 0;
  color: #888;
}