/* ===== Estilos generales ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('https://images.unsplash.com/photo-1542728926-1419a8b0e8f7?q=80&w=1470') center/cover no-repeat;
  min-height: 100vh;
  margin-top: 56px; /* compensar navbar fixed */
}

/* Botón personalizado color ámbar (tattoo) */
.btn-amber {
  background-color: #d4a373;
  color: #1a1a1a;
  border: 2px solid #d4a373;
  font-weight: 600;
}
.btn-amber:hover {
  background-color: transparent;
  color: #d4a373;
  border-color: #d4a373;
}

/* Secciones */
section {
  scroll-margin-top: 70px; /* para que el ancla no tape el contenido */
}

/* Contact cards */
.contact-card {
  display: block;
  background: white;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #212529;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: #d4a373;
}

/* Galería: tarjetas uniformes */
#gallery-container .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
#gallery-container .gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay {
  opacity: 1;
}

/* Icono de play para vídeos en la galería */
.video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  opacity: 0.85;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}