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

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f7f3ec;
  background-color: #050507;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin-top: 0;
}

.hero {
  position: relative;
  min-height: 90vh;
  background: url("../img/4.jpg") center center / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
  z-index: 0;
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #f2d28c;
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 999px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 5vw 6rem;
  max-width: 700px;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2d28c;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f2d28c, #f8e3b0);
  color: #111111;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.45);
}

.btn-outline {
  background: transparent;
  border-color: #f2d28c;
  color: #f2d28c;
}

.btn-outline:hover {
  background: rgba(242,210,140,0.08);
}

.btn.small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Sections */

.section {
  padding: 4.5rem 5vw;
}

.section-light {
  background: #faf5ef;
  color: #2c2620;
}

.section-dark {
  background: radial-gradient(circle at top left, #20212a, #050507);
  color: #f7f3ec;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 2.5rem;
  max-width: 34rem;
  font-size: 0.98rem;
  opacity: 0.9;
}

/* Two column layout */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.text-block p {
  margin-bottom: 1rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.icon-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: #d4aa63;
}

.image-block .responsive-img {
  border-radius: 1.5rem;
}

.shadow {
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
}

.social-links span {
  font-weight: 600;
}

.social-links a {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.social-links a:hover {
  background: #f2d28c;
  border-color: #f2d28c;
  color: #111;
}

/* Servicios */

.event-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.event-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(242,210,140,0.38);
  background: rgba(255,255,255,0.03);
  color: #f7f3ec;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: default;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background: rgba(6,6,10,0.82);
  border-radius: 1.2rem;
  padding: 1.7rem 1.5rem 1.6rem;
  border: 1px solid rgba(242,210,140,0.15);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

/* Galería */

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

.gallery-item {
  cursor: pointer;
  border-radius: 0.9rem;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.35);
  filter: brightness(1.03);
}

/* Lightbox */

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

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Video */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

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

/* Social Embeds */

.socials-embed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.embed-column h3 {
  margin-bottom: 0.5rem;
}

.embed-column p {
  font-size: 0.92rem;
}

/* Contacto */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.8rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-list a {
  color: #f2d28c;
}

.map-wrapper {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0,0,0,0.55);
  margin-bottom: 0.5rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.map-link a {
  color: #f2d28c;
  font-size: 0.95rem;
}

.contact-form-card {
  background: rgba(6,6,10,0.9);
  border-radius: 1.2rem;
  padding: 1.8rem 1.5rem 1.6rem;
  border: 1px solid rgba(242,210,140,0.2);
  box-shadow: 0 16px 35px rgba(0,0,0,0.65);
}

.contact-form-card h3 {
  margin-bottom: 1.1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,10,16,0.95);
  color: #f7f3ec;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f2d28c;
  box-shadow: 0 0 0 1px rgba(242,210,140,0.6);
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(0,0,0,0.4);
  z-index: 998;
}

.whatsapp-icon {
  font-size: 1.7rem;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  background: #050507;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer a {
  color: #f2d28c;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.9s ease forwards;
}

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

/* Responsive */

@media (max-width: 960px) {
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .socials-embed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .navbar {
    padding-inline: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: rgba(5,5,7,0.96);
    padding: 1rem 1.4rem;
    margin-top: 0.6rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 16px 30px rgba(0,0,0,0.6);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero-content {
    padding-inline: 1.5rem;
    padding-bottom: 4.2rem;
    max-width: 100%;
  }

  .section {
    padding-inline: 1.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .socials-embed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
