body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #d4af37;
  margin: 0;
  padding: 0;
  transition: all 0.4s ease;
}
header {
  background: #1a1a1a;
  text-align: center;
  padding: 20px;
  position: relative;
}
#mode-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #111;
}
h1 {
  font-size: 3em;
  margin-bottom: 0;
}
h2 {
  border-bottom: 2px solid #d4af37;
  padding-bottom: 5px;
}
.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.images img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid #d4af37;
  transition: transform 0.3s ease;
}
.images img:hover {
  transform: scale(1.05);
}
iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}
.insta-btn {
  display: inline-block;
  margin-top: 10px;
  background: #d4af37;
  color: #000;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}
.insta-btn:hover {
  background: #b8962d;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 2em;
  padding: 10px 15px;
  text-decoration: none;
}
.light-mode {
  background: #fff;
  color: #333;
}
.light-mode header {
  background: #f4f4f4;
}
.light-mode .container {
  background: #fff;
}
.light-mode h2 {
  border-bottom: 2px solid #333;
}
.light-mode #mode-toggle {
  color: #333;
  border-color: #333;
}
