body {
  background: #0a0a0a;
  color: #fff;
  font-family: sans-serif;
  margin: 0;
}

header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(145deg, #111, #222);
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 0 30px #ffcc5b;
}

header h1 {
  font-size: 2.5em;
  margin: 10px 0;
}

header p {
  color: #ccc;
  font-size: 1.2em;
}

.cta {
  display: inline-block;
  padding: 12px 25px;
  background: #ffcc5b;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px;
  transition: 0.3s;
}

.cta:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

.cta.whatsapp {
  background: #25D366;
  color: #fff;
}

.cta.whatsapp:hover {
  background: #128C7E;
}

.gallery {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.gallery h2 {
  text-align: center;
  color: #ffcc5b;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px;
}

.image-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 20px black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.image-card:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 10px 30px #ffcc5b;
}

.image-card:hover img {
  transform: scale(1.1);
}

/* Contact Section Styles */
#contact {
  padding: 50px 20px;
  max-width: 600px;
  margin: 40px auto;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 5px 20px black;
  color: #fff;
}

#contact h2 {
  text-align: center;
  color: #ffcc5b;
  margin-bottom: 30px;
  font-size: 2em;
}

#contact p {
  text-align: center;
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1.1em;
}

#contact p a {
  color: #ffcc5b;
  text-decoration: none;
  font-weight: bold;
}

#contact p a:hover {
  color: #ff9900;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact form input,
#contact form textarea {
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #ffcc5b;
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
}

#contact form input::placeholder,
#contact form textarea::placeholder {
  color: #888;
}

#contact form button {
  padding: 12px;
  background: #ffcc5b;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

#contact form button:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9em;
  color: #aaa;
}

