* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Eliminar bordes de todas las imágenes */
img {
  border: none !important;
  outline: none !important;
  display: block;
}

:root {
  --primary: #000000;
  --secondary: #0a0a0a;
  --accent: #00d4ff;
  --accent-dark: #0099cc;
  --dark: #000000;
  --light: #0a0a0a;
  --white: #ffffff;
  --text-gray: #b0b0b0;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  padding: 1rem;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cabaña en Pixel Art */
.cabin {
  position: relative;
  width: 120px;
  height: 100px;
  animation: cabinFloat 3s ease-in-out infinite;
}

@keyframes cabinFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Techo */
.cabin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 40px solid #8b4513;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

/* Cuerpo de la cabaña */
.cabin::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 80px;
  height: 60px;
  background: #a0522d;
  box-shadow: 
    inset 0 0 0 3px #654321,
    0 4px 8px rgba(0, 212, 255, 0.3);
}

/* Puerta */
.door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 36px;
  background: #3d2817;
  border: 2px solid #2d1810;
  z-index: 2;
}

/* Manija de la puerta */
.door::before {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
}

/* Ventanas */
.window {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #ffe4b5;
  border: 2px solid #654321;
  box-shadow: inset 0 0 8px rgba(255, 200, 0, 0.6);
}

.window-left {
  top: 50px;
  left: 30px;
}

.window-right {
  top: 50px;
  right: 30px;
}

/* Cruz en las ventanas */
.window::before,
.window::after {
  content: '';
  position: absolute;
  background: #654321;
}

.window::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.window::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

/* Persona entrando */
.person {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 40px;
  z-index: 3;
  animation: personWalk 2s ease-in-out infinite;
}

@keyframes personWalk {
  0% {
    bottom: -40px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    bottom: 0px;
    opacity: 1;
  }
  100% {
    bottom: 0px;
    opacity: 0;
  }
}

/* Cabeza */
.person::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #ffdbac;
  border-radius: 50%;
  border: 2px solid #00d4ff;
}

/* Cuerpo */
.person::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 24px;
  background: #00d4ff;
  border-radius: 4px 4px 0 0;
}

/* Brazos levantados (feliz) */
.arms {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #00d4ff;
  animation: armsWave 0.5s ease-in-out infinite alternate;
}

@keyframes armsWave {
  0% {
    transform: translateX(-50%) rotate(-10deg);
  }
  100% {
    transform: translateX(-50%) rotate(10deg);
  }
}

/* Humo de la chimenea */
.smoke {
  position: absolute;
  top: -10px;
  right: 25px;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: smokeRise 2s ease-in-out infinite;
}

.smoke:nth-child(2) {
  animation-delay: 0.5s;
}

.smoke:nth-child(3) {
  animation-delay: 1s;
}

@keyframes smokeRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-40px) scale(1.5);
    opacity: 0;
  }
}

/* Texto de carga */
.loading-text {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
  text-align: center;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Puntos animados */
.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% {
    content: '';
  }
  40% {
    content: '.';
  }
  60% {
    content: '..';
  }
  80%, 100% {
    content: '...';
  }
}

/* RESPONSIVE PRELOADER PARA MÓVIL */
@media (max-width: 768px) {
  .loader {
    width: 150px;
    height: 150px;
    transform: scale(0.8);
  }

  .loading-text {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 30px;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .loader {
    width: 120px;
    height: 120px;
    transform: scale(0.7);
  }

  .loading-text {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-top: 20px;
  }
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 6%;
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

/* Efecto de gotas de agua cayendo */
.water-drops {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

nav.scrolled .water-drops {
  opacity: 1;
}

.water-drop {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.6), transparent);
  border-radius: 50%;
  animation: dropFall 1.5s ease-in infinite;
  opacity: 0;
}

@keyframes dropFall {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(100px);
  }
}

/* Efecto de ondas al impactar */
.water-ripple {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  animation: rippleExpand 1s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }

  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1002;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.menu-toggle span {
  width: 30px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animación del menú hamburguesa a X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Overlay oscuro cuando el menú está abierto */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Gotas de lluvia en el menú móvil */
.menu-rain-drop {
  position: absolute;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.7), rgba(0, 212, 255, 0.4), transparent);
  border-radius: 50%;
  animation: menuDropFall 2s ease-in forwards;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

@keyframes menuDropFall {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  
  10% {
    opacity: 1;
  }
  
  90% {
    opacity: 1;
  }
  
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}

/* HERO SECTION - Mejorado para PC */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  left: 0;
  right: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  /* Mejorado para PC - menos oscuro, más nitidez */
  filter: brightness(0.65) contrast(1.1) saturate(1.15);
  border: none !important;
  outline: none !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay oscuro para mantener el tema negro */
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

/* Vignette sutil para enfocar el contenido */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 1100px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  color: var(--accent);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeInUp 1.5s ease 0.3s forwards;
  color: var(--white);
}

.hero-description {
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1.5s ease 0.6s forwards;
  color: var(--white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 3.5rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 400;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1.5s ease 0.9s forwards;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.hero-cta:hover {
  color: var(--dark);
  border-color: var(--accent);
}

.hero-cta:hover::before {
  left: 0;
}

.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  cursor: pointer;
  z-index: 2;
}

.scroll-down::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {

  0%,
  100% {
    top: 10px;
    opacity: 1;
  }

  50% {
    top: 25px;
    opacity: 0.3;
  }
}

/* SECTION COMMON STYLES */
section {
  padding: 7rem 6%;
  background: var(--dark);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-description {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 300;
  line-height: 1.8;
}

/* ACCOMMODATIONS */
.accommodations {
  background: var(--secondary);
}

.accommodation-grid {
  display: grid;
  gap: 3rem;
}

.accommodation-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.accommodation-item:nth-child(even) {
  direction: rtl;
}

.accommodation-item:nth-child(even)>* {
  direction: ltr;
}

/* ===== CABIN IMAGE SLIDER STYLES ===== */
.accommodation-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.accommodation-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.accommodation-image.active {
  opacity: 1;
}

.accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
  outline: none !important;
}

.accommodation-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--accent);
  color: var(--dark);
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 10;
}

.cabin-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.cabin-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cabin-indicators .indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.cabin-indicators .indicator.active {
  background-color: var(--accent);
  border-color: var(--accent);
}

.accommodation-content {
  padding: 2rem 0;
}

.accommodation-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.accommodation-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-gray);
  font-weight: 300;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.feature-item::before {
  content: '—';
  color: var(--accent);
  font-weight: 300;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 3rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}

/* EXPERIENCE SECTION */
.experience {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%2300d4ff" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.experience-item {
  text-align: center;
  padding: 2rem;
}

.experience-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--accent);
}

.experience-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.experience-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  font-weight: 300;
}

/* GALLERY */
.gallery {
  background: var(--dark);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  border: none !important;
  outline: none !important;
}

.gallery-item:hover img {
  filter: grayscale(0%);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  color: var(--white);
  font-size: 1.2rem;
}

/* ABOUT */
.about {
  background: var(--secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--accent);
  margin-top: 3rem;
  font-style: italic;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: none !important;
  outline: none !important;
}

.about-images img:first-child {
  grid-column: 1 / -1;
  height: 400px;
}

/* CONTACT */
.contact {
  background: var(--dark);
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--white);
}

.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 3.5rem;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 2rem;
  transition: all 0.4s ease;
}

.contact-cta:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.contact-map {
  background: var(--secondary);
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.contact-map p {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--accent);
  pointer-events: none;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(90%);
  transition: filter 0.3s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0%) invert(0%) contrast(100%);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 6%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 4px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-text {
  font-size: 0.85rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

/* PIXELFORGE CREDITS */
.footer-credits {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.credits-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.credits-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.credits-link:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.pixelforge-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

.credits-link:hover .pixelforge-logo {
  filter: brightness(1.5) drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
  transform: scale(1.1);
}

.pixelforge-name {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.credits-link:hover .pixelforge-name {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .accommodation-item,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .accommodation-item:nth-child(even) {
    direction: ltr;
  }

  .accommodation-image-container {
    height: 380px;
  }

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

  .gallery-item:first-child {
    grid-column: 1 / -1;
  }

  /* Mantener contacto centrado en tablet */
  .contact-info {
    align-items: center;
    text-align: center;
  }

  .contact-item {
    max-width: 500px;
  }

  /* Mapa responsive en tablet */
  .contact-map {
    min-height: 400px;
  }

  .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 4%;
  }

  .logo {
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    white-space: nowrap;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Estilos mejorados para los items del menú móvil */
  .nav-menu li {
    width: 100%;
    padding: 0 3rem;
    position: relative;
  }

  .nav-menu li::after {
    content: '';
    position: absolute;
    bottom: -1.25rem;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(0, 212, 255, 0.3) 20%, 
      rgba(0, 212, 255, 0.6) 50%, 
      rgba(0, 212, 255, 0.3) 80%, 
      transparent 100%);
  }

  .nav-menu li:last-child::after {
    display: none;
  }

  .nav-menu a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    text-align: center;
  }

  /* Efecto de gotas en el menú móvil */
  .nav-menu.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  section {
    padding: 6rem 5%;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .accommodation-image-container {
    height: 350px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  /* Mapa responsive en móvil */
  .contact-map {
    min-height: 350px;
    border-radius: 0;
  }

  .contact-map iframe {
    min-height: 350px;
  }

  .contact-map p {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/* RESPONSIVE PARA MÓVILES MUY PEQUEÑOS */
@media (max-width: 480px) {
  nav {
    padding: 0.8rem 3%;
  }

  .logo {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }

  .menu-toggle {
    gap: 5px;
  }

  .menu-toggle span {
    width: 25px;
    height: 2px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .accommodation-image-container {
    height: 300px;
  }

  /* Footer credit responsive */
  .footer-credits {
    gap: 0.5rem;
  }

  .credits-text {
    font-size: 0.65rem;
  }

  .pixelforge-logo {
    width: 24px;
    height: 24px;
  }

  .pixelforge-name {
    font-size: 0.75rem;
  }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}