/* === RESET Y BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0a0a0a; /* negro mate */
  color: #f2f2f2;
  line-height: 1.6;
}

/* === HEADER === */
header {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #d4af37;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

header h1 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
  width: auto;
}

nav a {
  color: #d4af37;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #d4af37;
}

/* === HERO === */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1621605815971-4f63ed4f4aa8?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
  text-align: center;
  color: #fff;
  height: 70vh; /* más pequeño que antes (antes era 100vh) */
  min-height: 500px;
  border-bottom: 2px solid #d4af37;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease both;
}

.hero-title {
  font-size: 2.5rem; /* más compacto */
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(212,175,55,0.3);
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-divider {
  display: block;
  width: 100px;
  height: 2px;
  margin: 0 auto 20px auto;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e8e8e8;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212,175,55,0.25);
}

.hero-btn:hover {
  background-color: #000;
  color: #d4af37;
  border: 1px solid #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
  transform: translateY(-2px);
}

/* === Animación === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slogan-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.tagline-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #d4af37;
  letter-spacing: 2px;
  margin: 0;
}

.tagline-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  margin: 5px 0 0;
}

.hero-description {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-description .highlight {
  color: #d4af37;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-description em {
  font-style: italic;
  color: #ccc;
}

.hero-description .experience {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === SECCIONES === */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === SERVICIOS === */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  background: #111;
  border: 1px solid #d4af37;
  border-radius: 10px;
  padding: 25px;
  width: 260px;
  text-align: center;
  color: #f2f2f2;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.service h3 {
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* === CALENDARIO === */
.calendar-container {
  background: #111;
  padding: 30px;
  border: 1px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  color: #f2f2f2;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.nav-btn {
  background-color: #d4af37;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: #000;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.month-year {
  font-weight: bold;
  text-transform: capitalize;
  font-size: 1.2rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 20px;
}

.day-name {
  font-weight: bold;
  color: #d4af37;
  text-transform: uppercase;
}

.day {
  padding: 10px;
  border-radius: 6px;
  background: #0a0a0a;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid #222;
}

.day:hover {
  background-color: rgba(212,175,55,0.2);
}

.day.selected {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
}

.day.today {
  background-color: rgba(212, 175, 55, 0.3);
  border: 1px solid #d4af37;
}

.day.empty {
  visibility: hidden;
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid #d4af37;
  text-align: left;
}

.close-btn {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #d4af37;
  transition: 0.3s;
}

.close-btn:hover {
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

form label {
  font-weight: 500;
  color: #d4af37;
}

form input,
form select {
  padding: 10px;
  border: 1px solid #d4af37;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 1rem;
}

form input:focus,
form select:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

form button {
  background-color: #d4af37;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #000;
}

form button:hover {
  background-color: #000;
  color: #d4af37;
  border: 1px solid #d4af37;
}

/* === FOOTER === */
footer {
  background-color: #000;
  color: #d4af37;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
  border-top: 2px solid #d4af37;
}

footer a {
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #fff;
}

/* === ERRORES === */
.error-message {
  color: #ffdddd;
  background: #660000;
  padding: 8px 10px;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 0.95rem;
  display: inline-block;
}

.input-error {
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08);
  border-color: #cc0000;
}
.day.disabled {
  opacity: 0.3;
  pointer-events: none;
  text-decoration: line-through;
}