* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f5f2;
  color: #3b3b3b;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  background: #1f1f1f;
  color: #fff;
}

.navbar .logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.navbar nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
}

.navbar nav a:hover {
  color: #d4af37;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-text button {
  background: #1f1f1f;
  color: #fff;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.hero-text button:hover {
  background: #d4af37;
  color: #000;
}

.hero-img img {
  width: 400px;
  border-radius: 10px;
}

.about {
  text-align: center;
  padding: 80px 20px;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0 40px 80px;
}

.gallery img {
  width: 280px;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #1f1f1f;
  color: #ccc;
  font-size: 14px;
}
