/* ========================================
   Casa Madonna La Providence - Modern CSS
   ======================================== */

/* CSS Custom Properties (Variables) */
:root {
  --color-bg: #121212;
  --color-bg-card: #191919;
  --color-gold: #C09233;
  --color-gold-light: #d4a84a;
  --color-text: #f4f4f4;
  --color-text-muted: #a0a0a0;
  --color-dark: #232323;
  
  /* Typography - Cormorant Garamond + Raleway */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  
  --shadow-lg: 0 0 20px 8px rgba(17, 17, 17, 0.7);
  --radius-sm: 4px;
  --radius-md: 8px;
  
  --transition: 0.3s ease;
  
  /* Breakpoints reference */
  /* sm: 640px, md: 768px, lg: 1024px, xl: 1280px, 2xl: 1536px */
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

/* Loading State - Hide content until translations load */
body:not(.i18n-ready) .container {
  opacity: 0;
}

body.i18n-ready .container {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Page loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-bg-card);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* ========== Links - Elegant Style ========== */
a {
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold);
}

/* Underline effect for content links */
.content a,
.footer a,
.contact-info a {
  color: var(--color-gold);
  text-decoration: none;
  background-image: linear-gradient(var(--color-gold), var(--color-gold));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size var(--transition), color var(--transition);
}

.content a:hover,
.footer a:hover,
.contact-info a:hover {
  background-size: 100% 1px;
  color: var(--color-gold-light);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
}

h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--color-text);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ========== Layout ========== */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 1280px) {
  .container {
    max-width: 1024px;
    margin: 1.5rem auto;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

/* ========== Header ========== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: relative;
  min-height: 100px;
}

.header__logo img {
  width: 130px;
  height: auto;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition), background-color var(--transition);
  border-radius: var(--radius-sm);
}

.nav-menu > li > a:hover {
  color: var(--color-gold);
  background-color: rgba(192, 146, 51, 0.1);
}

.nav-menu > li > a.active {
  background-color: var(--color-gold);
  color: #fff;
  padding: 0.45rem 0.85rem;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: var(--color-bg-card);
  min-width: 160px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 100;
  overflow: hidden;
}

.dropdown li a {
  padding: 0.65rem 1rem;
  display: block;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition), background-color var(--transition);
}

.dropdown li a:hover {
  background-color: var(--color-gold);
  color: #fff;
}

/* Language switcher */
.header__lang a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  color: var(--color-text);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition), background-color var(--transition);
}

.header__lang a:hover {
  background-color: var(--color-gold);
  color: #fff;
}

/* ========== Hero Slider ========== */
.hero {
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 500px;
}

.slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider__slide.active {
  opacity: 1;
}

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

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.slider__dot:hover,
.slider__dot.active {
  background: var(--color-gold);
}

/* ========== Content ========== */
.content {
  padding: 2rem 2rem 3rem;
}

.quote-section {
  padding: 0;
}

.intro-quote {
  text-align: center;
  padding: 3rem 2rem;
  margin: 0;
  background: linear-gradient(180deg, rgba(192, 146, 51, 0.05) 0%, transparent 100%);
}

.intro-quote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.intro-quote h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.about {
  line-height: 1.8;
}

.about h2 {
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
}

.float-right {
  float: right;
  margin: 1rem 0 1rem 1.5rem;
  border-radius: var(--radius-md);
}

.float-left {
  float: left;
  margin: 1rem 1.5rem 1rem 0;
  border-radius: var(--radius-md);
}

/* ========== Modal - Centered on Desktop, Fullscreen on Mobile ========== */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text);
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

/* Bloquear scroll del body cuando modal está abierto */
body.modal-open {
  overflow: hidden;
}

.modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem;
  text-align: center;
}

.modal__content p {
  font-size: 1rem;
  max-width: 100%;
  margin: 0 auto 1rem;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

.modal__header {
  margin-bottom: 2rem;
}

.modal__header h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.modal__header .modal__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.modal__info {
  margin: 2rem 0;
  padding: 2rem 3rem;
  background: rgba(192, 146, 51, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(192, 146, 51, 0.2);
  max-width: 500px;
  width: 100%;
}

.modal__info-item {
  margin-bottom: 1.5rem;
}

.modal__info-item:last-child {
  margin-bottom: 0;
}

.modal__info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal__info h4 svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.modal__info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.modal__info a {
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}

.modal__info a:hover {
  color: var(--color-gold);
}

.modal__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(192, 146, 51, 0.2);
  max-width: 500px;
}

.modal__footer p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin: 0;
}

.modal__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 600px;
}

.modal__feature {
  text-align: center;
  padding: 1rem;
}

.modal__feature svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.modal__feature span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ========== Footer ========== */
.footer {
  background: var(--color-dark);
  padding: 2.5rem 2rem 0;
  border-top: 2px solid var(--color-gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__col {
  font-family: var(--font-body);
}

.footer__col h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.footer__col p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* Contact Info */
.contact-info {
  font-style: normal;
  font-family: var(--font-body);
}

.contact-info p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.contact-info strong {
  color: var(--color-text);
  font-weight: 500;
}

.contact-info a {
  font-family: var(--font-body);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(192, 146, 51, 0.15);
  color: var(--color-gold);
  transition: color var(--transition), background-color var(--transition);
}

.social-links a:hover {
  background-color: var(--color-gold);
  color: #fff;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Location Button */
.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background-color: var(--color-gold);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color var(--transition), opacity var(--transition);
}

.btn-location:hover {
  background-color: var(--color-gold-light);
  opacity: 0.95;
}

/* Footer Bottom */
.footer__bottom {
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ========== Buttons ========== */
/* Reservar button - inherits same styling as other nav links */

/* ========== Utilities ========== */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

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

.lead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ========== Sections ========== */
.section {
  padding: 3rem 2rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.section__title--center {
  text-align: center;
}

.section__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Welcome Section */
.welcome-section {
  text-align: center;
  border-bottom: 1px solid rgba(192, 146, 51, 0.2);
}

.welcome-section h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

/* ========== Features Grid ========== */
.features-section {
  background: rgba(192, 146, 51, 0.03);
}

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

.feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(192, 146, 51, 0.1);
  color: var(--color-gold);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========== About Grid ========== */
.about-section {
  border-bottom: 1px solid rgba(192, 146, 51, 0.2);
}

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

.about-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.about-content p {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ========== Amenities Grid ========== */
.amenities-section {
  background: rgba(0, 0, 0, 0.2);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}

.amenity-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 200px;
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-item:hover img {
  transform: scale(1.05);
}

.amenity-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.amenity-item__overlay h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}

/* ========== CTA Section ========== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(192, 146, 51, 0.15) 0%, rgba(192, 146, 51, 0.05) 100%);
  border-top: 1px solid rgba(192, 146, 51, 0.3);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ========== Buttons ========== */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-gold);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition), opacity var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  opacity: 0.95;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ========== Mobile Menu Toggle ========== */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

/* X perfecta cuando está activo */
.menu-toggle.is-active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ========== Responsive ========== */

/* Tablet landscape and below */
@media (max-width: 1024px) {
  .header {
    padding: 1rem 1.5rem;
  }
  
  .slider {
    height: 400px;
  }
  
  .features-grid {
    gap: 1.5rem;
  }
  
  .about-grid {
    gap: 2rem;
  }
  
  .section {
    padding: 2.5rem 1.5rem;
  }
}

/* Tablet portrait and below */
@media (max-width: 768px) {
  .header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 1rem;
    position: relative;
  }
  
  .header__logo {
    flex: 0 0 auto;
  }
  
  .header__logo img {
    width: 100px;
    height: auto;
  }
  
  .header__lang {
    margin-left: auto;
    margin-right: 0.75rem;
  }
  
  .header__lang a {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }
  
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }
  
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
  }
  
  .nav-menu > li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu > li > a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 0;
  }
  
  .nav-menu > li > a:hover,
  .nav-menu > li > a.active {
    color: var(--color-gold);
    background: transparent;
  }
  
  .nav-menu > li > a.btn-reservar {
    margin-top: 1rem;
    color: var(--color-text-muted);
  }
  
  .nav-menu > li > a.btn-reservar:hover {
    color: var(--color-gold);
  }
  
  .dropdown {
    position: static;
    display: none;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .dropdown li a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: transparent;
  }
  
  .dropdown li a:hover {
    background: transparent;
    color: var(--color-gold);
  }
  
  .has-dropdown.open .dropdown {
    display: block;
  }
  
  .slider {
    height: 280px;
  }
  
  .content {
    padding: 0;
  }
  
  .section {
    padding: 2rem 1.25rem;
  }
  
  .intro-quote {
    padding: 2rem 1rem;
  }
  
  .intro-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
  }
  
  .welcome-section h1 {
    font-size: 1.75rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-image img {
    height: 220px;
  }
  
  .about-content h2 {
    font-size: 1.5rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .amenity-item {
    height: 200px;
  }
  
  .footer {
    padding: 2rem 1.25rem 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__col {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .btn-location {
    display: inline-flex;
  }
  
  .float-left,
  .float-right {
    float: none;
    margin: 1rem auto;
    display: block;
    max-width: 100%;
  }
  
  /* Modal ajustes mobile - fullscreen */
  .modal {
    top: 0;
    left: 0;
    transform: none;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .modal__content {
    min-height: 100vh;
    padding: 4rem 1.5rem 2rem;
    justify-content: center;
  }
  
  .modal__close {
    position: fixed;
    top: 15px;
    right: 15px;
  }
  
  .modal__header h3 {
    font-size: 2rem;
  }
  
  .modal__info {
    padding: 1.5rem;
  }
  
  .modal__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .header__logo img {
    width: 90px;
  }
  
  .slider {
    height: 220px;
  }
  
  .intro-quote {
    padding: 1.5rem 1rem;
  }
  
  .intro-quote p {
    font-size: 1.15rem;
  }
  
  .section {
    padding: 1.5rem 1rem;
  }
  
  .welcome-section h1 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1rem 0.5rem;
  }
  
  .section__title {
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .header__logo img {
    width: 80px;
  }
  
  .slider {
    height: 180px;
  }
  
  .intro-quote p {
    font-size: 1.05rem;
  }
  
  .welcome-section h1 {
    font-size: 1.35rem;
  }
  
  .amenity-item {
    height: 160px;
  }
}

/* ========================================
   SECONDARY PAGES STYLES
   ======================================== */

/* ========== Page Hero ========== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(192, 146, 51, 0.1) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(192, 146, 51, 0.2);
}

.page-hero__content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 3rem 1.5rem;
  }
  
  .page-hero__content h1 {
    font-size: 1.85rem;
  }
  
  .page-hero__subtitle {
    font-size: 1rem;
  }
}

/* ========== Section Content ========== */
.section__content--narrow {
  max-width: 800px;
}

/* ========== Amenities Cards (Services Page) ========== */
.amenities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.amenity-card {
  background: rgba(192, 146, 51, 0.05);
  border: 1px solid rgba(192, 146, 51, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.amenity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(192, 146, 51, 0.4);
}

.amenity-card__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.amenity-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .amenities-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .amenities-cards {
    grid-template-columns: 1fr;
  }
}

/* ========== Rooms Grid ========== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.room-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(192, 146, 51, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.room-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.room-card__content {
  padding: 1.5rem;
}

.room-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.room-card__content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.room-card__amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.room-card__amenities li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.35rem 0.75rem;
  background: rgba(192, 146, 51, 0.1);
  border-radius: 20px;
}

.btn-reservar-room {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background-color: var(--color-gold);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color var(--transition);
}

.btn-reservar-room:hover {
  background-color: var(--color-gold-light);
}

@media (max-width: 1024px) {
  .rooms-grid {
    gap: 1.5rem;
  }
  
  .room-card__image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .room-card__image {
    height: 200px;
  }
}

/* ========== Gallery Grid ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  background: rgba(192, 146, 51, 0.2);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  padding: 0.5rem;
}

.lightbox__close {
  top: 20px;
  right: 25px;
}

.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ========== Contact Page ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.contact-intro {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 146, 51, 0.1);
  border-radius: 50%;
  color: var(--color-gold);
}

.contact-item__content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.contact-item__content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(192, 146, 51, 0.05);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(192, 146, 51, 0.15);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1px solid rgba(192, 146, 51, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Map Container */
.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(192, 146, 51, 0.2);
}

.map-container iframe {
  display: block;
}

@media (max-width: 1024px) {
  .contact-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* ========== Rooms List with Sliders ========== */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(192, 146, 51, 0.1);
}

.room-card:nth-child(even) {
  direction: rtl;
}

.room-card:nth-child(even) > * {
  direction: ltr;
}

.room-card__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-slider__track {
  width: 100%;
  height: 100%;
}

.room-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.room-slider__slide.active {
  opacity: 1;
}

.room-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-slider__prev,
.room-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 10;
}

.room-slider__prev:hover,
.room-slider__next:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.room-slider__prev {
  left: 10px;
}

.room-slider__next {
  right: 10px;
}

.room-slider__dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.room-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.room-slider__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.room-slider__dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

.room-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-card__content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.room-card__content > p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.room-card__amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.room-card__amenities .amenity-icon {
  color: var(--color-gold);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .room-card {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  
  .room-card:nth-child(even) {
    direction: ltr;
  }
  
  .room-card__slider {
    aspect-ratio: 16/10;
  }
  
  .room-card__content {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .room-card__content h2 {
    font-size: 1.5rem;
  }
  
  .room-slider__prev,
  .room-slider__next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* ========== Form Status Messages ========== */
.form-status {
  margin-top: 1rem;
  padding: 0;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.form-status--success {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-status--error {
  padding: 1rem;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
