/* Hero Sections - Home & Mallorca */

.hero-home,
.hero-mallorca {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.hero-home {
  background-image: url('/images/hero-home.jpg');
}

.hero-mallorca {
  background-image: url('/images/hero-mallorca.jpg');
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.05)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 64px;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: black;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
}
