
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background-color: #0a0a0a;
}
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/photo1.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overlay {
  padding: 40px;
}
.logo {
  width: 140px;
  margin-bottom: 25px;
}
.headline {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fdd835;
}
.tagline {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.cta-button {
  background-color: #fdd835;
  color: #000;
  padding: 18px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.2rem;
}
.gallery {
  padding: 60px 20px;
  background: #1a1a1a;
  text-align: center;
}
.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.about, .contact {
  padding: 50px 20px;
  text-align: center;
  background: #111;
}
.about h2, .contact h2 {
  font-size: 2.2rem;
  color: #fdd835;
}
.about p, .contact p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}
footer {
  background: #000;
  padding: 30px;
  text-align: center;
  font-size: 1rem;
  color: #999;
}
#music-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  background: #fdd835;
  border: none;
  padding: 12px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1001;
}
.whatsapp-float:hover {
  background: #20b954;
}
