/* Variables de color - Paleta vibrante juvenil */
:root {
  --bg-dark: #2a1d2f;          /* fondo oscuro con tinte violeta */
  --text-light: #fff7fb;       /* blanco rosado suave */
  --primary: #e879f9;          /* rosa fuerte / fucsia suave */
  --secondary: #f9a8d4;        /* rosa pastel */
  --accent: #fbcfe8;           /* rosa bebé claro */
  --card-bg: #3b2840;          /* violeta profundo */
  --border: #6d4a70;           /* violeta pastel medio */
}

/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.logo {
  font-family: "Playfair Display", serif !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: var(--primary) !important;
}

/* Color Utilities */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

/* Navigation */
.navbar {
  background-color: rgba(42, 29, 47, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(109, 74, 112, 0.5);
  padding: 1.5rem 0;
}

.navbar-nav .nav-link {
  color: rgba(255, 247, 251, 0.8) !important;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 29, 47, 0.95),
    rgba(42, 29, 47, 0.8),
    rgba(42, 29, 47, 0.95)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  padding: 8rem 0;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 3rem;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 247, 251, 0.7);
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 500;
}

.btn-hero {
  padding: 1.5rem 3rem;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background-color: var(--primary);
  color: var(--bg-dark);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 121, 249, 0.4);
}

.btn-hero i {
  transition: transform 0.3s;
}

.btn-hero:hover i {
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-border {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 247, 251, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 10px;
}

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

/* Bento Gallery */
.bento-section {
  padding: 8rem 0;
}

.bento-card {
  position: relative;
  height: 600px;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.bento-card-primary .bento-overlay {
  background: linear-gradient(to top, rgba(168, 85, 247, 0.8), transparent);
}

.bento-card-secondary .bento-overlay {
  background: linear-gradient(to top, rgba(168, 85, 247, 0.8), transparent);
}

.bento-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.bento-content p {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
}

.bento-card-secondary .bento-content h3,
.bento-card-secondary .bento-content p {
  color: var(--bg-dark);
}

/* Rooms Section */
.rooms-section {
  padding: 8rem 0;
  background-color: var(--card-bg);
}

.section-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(248, 248, 248, 0.6);
  max-width: 700px;
  margin: 0 auto;
}

.room-card {
  background-color: var(--bg-dark);
  border-radius: 2rem;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.room-card:hover {
  transform: scale(1.02);
  border-color: var(--primary);
}

.room-image {
  height: 320px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-body {
  padding: 2rem;
}

.room-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-price .price {
  font-size: 3rem;
  font-weight: 900;
}

.room-price .period {
  color: rgba(248, 248, 248, 0.6);
  font-weight: 500;
}

.room-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(248, 248, 248, 0.8);
  font-weight: 500;
}

.room-features i {
  width: 20px;
  height: 20px;
}

/* Lifestyle Section */
.lifestyle-section {
  padding: 8rem 0;
}

.lifestyle-text {
  font-size: 1.25rem;
  color: rgba(248, 248, 248, 0.7);
  line-height: 1.6;
  margin-top: 2rem;
}

.stat-box {
  text-align: left;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(248, 248, 248, 0.7);
  font-weight: 500;
}

.lifestyle-image {
  height: 600px;
  border-radius: 2rem;
  overflow: hidden;
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process Section */
.process-section {
  padding: 8rem 0;
  background-color: var(--card-bg);
}

.process-step {
  text-align: center;
}

.step-number {
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.2;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.step-description {
  font-size: 1.125rem;
  color: rgba(248, 248, 248, 0.7);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(132, 204, 22, 0.2), rgba(251, 146, 60, 0.2));
  border-radius: 3rem;
  padding: 5rem 3rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(248, 248, 248, 0.7);
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(248, 248, 248, 0.8);
  font-weight: 500;
}

.contact-item i {
  width: 24px;
  height: 24px;
}

.contact-form {
  background-color: var(--bg-dark);
  border-radius: 2rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-light);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

.contact-form .form-control:focus {
  background-color: var(--card-bg);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 0 0 0.25rem rgba(168, 85, 247, 0.25);
}

.contact-form .form-control::placeholder {
  color: rgba(248, 248, 248, 0.4);
}

.footer-text {
  color: rgba(248, 248, 248, 0.5);
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  border-radius: 1rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #9333ea;
  border-color: #9333ea;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: 1rem;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #65a30d;
  border-color: #65a30d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 4rem 0;
  }

  .bento-card {
    height: 400px;
  }

  .lifestyle-image {
    height: 400px;
  }

  .cta-box {
    padding: 3rem 2rem;
  }

  .section-title {
    text-align: center;
  }

  .stat-box {
    text-align: center;
  }
}
