:root {
  --bg-main: #050505;
  --bg-alt: #101015;
  --accent: #d9a441;
  --accent-soft: rgba(217, 164, 65, 0.2);
  --text-main: #ffffff;
  --text-muted: #b3b3b3;
  --border-soft: rgba(255,255,255,0.08);
  --danger: #ff3366;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #191919 0, #050505 45%);
  color: var(--text-main);
}

/* Layout */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
  background: transparent;
}

.section.dark {
  background: linear-gradient(135deg, #050505 0%, #141414 50%, #050505 100%);
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0 0 30px;
  color: var(--text-muted);
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

/* Header */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 110px 16px 80px;
  animation: fadeInUp 1s ease-out both;
}

.hero-tagline {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0 0 24px;
  color: #e5e5e5;
  font-size: 0.98rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-info {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 120px;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #f3d17a);
  color: #111111;
  box-shadow: 0 14px 30px rgba(0,0,0,0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent-soft);
  color: #ffffff;
}

.btn.secondary:hover {
  border-color: var(--accent);
  background: rgba(0,0,0,0.5);
}

.btn.full {
  width: 100%;
}

/* Concept */

.highlights {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.concept-card {
  background: radial-gradient(circle at top left, rgba(217,164,65,0.2), rgba(10,10,10,0.95));
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid var(--accent-soft);
  box-shadow: var(--shadow-soft);
}

.concept-card h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.small-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Eventos */

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 2.6fr);
  gap: 32px;
  align-items: center;
}

.event-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: block;
}

.event-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-top: 0;
}

.event-info ul {
  padding-left: 18px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .event-feature {
    grid-template-columns: 1fr;
  }
}

/* Video */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-item {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  display: block;
  object-fit: cover;
  max-height: 220px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.7);
  opacity: 0.95;
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-image {
  max-width: 92%;
  max-height: 92vh;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
}

/* Redes */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--text-main);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.social-icon.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-1px);
}

.social-icon.ig:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
  border-color: transparent;
  transform: translateY(-1px);
}

.social-icon.tt:hover {
  background: #111111;
  border-color: #25f4ee;
  transform: translateY(-1px);
}

.social-embeds {
  display: flex;
  justify-content: flex-end;
}

.fb-embed {
  max-width: 400px;
  width: 100%;
}

/* Formulario */

.reservation-form {
  background: rgba(5,5,5,0.8);
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-row textarea {
  border-radius: 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(217,164,65,0.4);
}

.reservation-card {
  border-radius: 18px;
  padding: 24px 22px;
  background: radial-gradient(circle at top, rgba(217,164,65,0.14), rgba(8,8,8,0.95));
  border: 1px solid var(--accent-soft);
  box-shadow: var(--shadow-soft);
}

.reservation-card h3 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

/* Ubicación */

.address {
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-placeholder {
  border-radius: 18px;
  border: 1px dashed var(--border-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  z-index: 1500;
  font-size: 1.7rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.85);
  filter: brightness(1.05);
}

/* Música toggle */

.music-toggle {
  position: fixed;
  left: 16px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
}

/* Footer */

.main-footer {
  border-top: 1px solid var(--border-soft);
  background: #050505;
  padding: 18px 0 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-content a {
  color: var(--accent);
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */

@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .social-embeds {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 18px;
  }

  .music-toggle {
    left: 12px;
    bottom: 18px;
  }
}

/* Animations */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
