body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111111;
  color: #f5f1e8;
}

/* HEADER */
header {
  background: #1a1a1a;
  color: #f5f1e8;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #b68b2d;
}

header h1 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* NAV */
nav a {
  color: #f5f1e8;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #b68b2d;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f5f1e8;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e7dcc5;
}

/* BOTÓN */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #b68b2d;
  color: #111111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #d6a63a;
  transform: scale(1.05);
}

/* SECCIONES */
.services,
.about,
.gallery,
.contact {
  padding: 60px 20px;
  text-align: center;
}

.services h2,
.about h2,
.gallery h2,
.contact h2 {
  margin-bottom: 30px;
  color: #b68b2d;
}

/* SERVICES */
.service-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

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

.card h3 {
  margin: 15px 0 10px;
  color: #f5f1e8;
}

.card p {
  padding: 0 15px 20px;
  color: #d9cfbb;
  line-height: 1.5;
}

/* ABOUT */
.about {
  background: #171717;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #ddd2bd;
}

/* GALERÍA */
.gallery-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-items img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* CONTACTO */
.contact p {
  margin: 10px 0;
  color: #ddd2bd;
}

/* FOOTER */
footer {
  background: #0d0d0d;
  color: #b9aa8a;
  text-align: center;
  padding: 18px;
  border-top: 1px solid #2b2b2b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav a {
    display: inline-block;
    margin: 6px 8px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
