/* contact.css - contact page specific */

.contact-hero {
  padding: 44px 0;
  background-image: url("../images/interior_wall.png");
  background-position: center;
  background-size: cover;
  text-align: center;
}
.contact-hero h2 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
}
.contact-hero p {
  margin-top: 10px;
  color: var(--gold);
}
.whatsapp-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--accent);
  color: #dfeee6;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0;
}
.contact-card {
  background: var(--card);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  text-align: center;
}
.contact-card h3 {
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--muted);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* tablet */
@media (min-width: 700px) {
  .contact-details {
    flex-direction: row;
    gap: 20px;
  }
  .contact-card {
    text-align: left;
  }
}
