/* ===== Reset ===== */
:root {--brand:#b47d41;--cream:#fdf6ed;--dark:#2f2f2f;}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  background: var(--cream);
  color: #333;
  height: auto !important;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3 {
  font-family: 'Playfair Display', serif;
  font-weight:600;
}
a { text-decoration:none; color:inherit; }

/* ===== Layout ===== */
.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
  box-sizing: border-box;
}

@media (max-width:900px){ header img { max-height:70px; } }
@media (max-width:600px){ header img { max-height:55px; } }

/* ===== Nav ===== */
	/* ===== Header ===== */
header {
  background:#fff;
  text-align:center;
  position: sticky;
  top: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
header.header-hidden {
  transform: translateY(-100%);
}

header.header-visible {
  transform: translateY(0);
}   
	/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #A66E35;
  margin: 2.5px 0;
  transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
  border-radius: 2px;
}
.hamburger.active span {
  background-color: #ffffff !important;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.8);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}

/* Header positioning for hamburger */
header > .container {
  position: relative;
}
header{
	background: #fdfbf9 !important;
}
/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  
  .hamburger {
    display: flex;
  }
/* Animate to X and force white lines when active */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
    background: #ffffff; /* white X */
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
	transform: scaleX(0.8);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
    background: #ffffff; /* white X */
  }
}
    /* Header + Logo */
    header {background:#fff;}
    header img {
      max-height: 100px;
      width: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
    }

    /* Nav bar */
    nav {background-color:#A66E35;}
nav .container {
  display:flex;
  justify-content:center;
  gap:2rem;
  flex-wrap:wrap;
  padding:0.8rem 0;
}
nav a {
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:1rem;
  transition:color .3s;
}
nav a:hover {
  color:#f5e4c3;
}

/* Language switcher */
.nav-item.lang-switcher {
  position: relative;
}

.lang-current {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color .3s, border-color .3s, background .2s;
}

.lang-current:hover {
  color:#f5e4c3;
  border-color:#f5e4c3;
  background: rgba(0,0,0,0.08);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #A66E35;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1000;
}

.lang-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.lang-menu a:hover {
  background: rgba(0,0,0,0.15);
  color: #f5e4c3;
}

/* Show on hover/focus-within (no JS needed) */
.lang-switcher:hover .lang-menu,
.lang-switcher:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Dropdown styles */
.nav-item {
  position: relative;
  display: inherit;
}
.nav-item.dropdown .nav-link::after {
   content: '▾';
	margin-left: 6px;
	}
.nav-link {
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:1rem;
  cursor: pointer;
  transition:color .3s;
}

.nav-link:hover {
  color:#f5e4c3;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #A66E35;
  min-width: 220px;
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: rgba(0,0,0,0.15);
  color: #f5e4c3;
}

/* Mobile responsive */
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
  nav.active {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #A66E35;
    z-index: 1000;
    overflow-y: auto;
  }
  /* Stack items vertically inside the drawer */
  nav .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 16px 16px;
  }

  /* Make each link full-width with separators */
  nav a,
  nav .nav-item {
    width: 100%;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  
  /* Dropdown styles - fold out vertically */
  .nav-item.dropdown {
    display: block;
	padding: 0;
  }

  /* Dropdowns as collapsible blocks */
  .nav-item.dropdown .nav-link {
    display: flex;
    justify-content: center;
  }
  .nav-item.dropdown .nav-link::after {
    content: '▾';
    margin-left: 16px;
	transition: transform 0.3s ease;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
    padding: 0;
	min-width: auto;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .dropdown.active .dropdown-menu {
    max-height: 320px;
  }

  /* Language switcher collapsible */
  .nav-item.lang-switcher {
    display: block;
	padding: 0;
  }
  .lang-current {
    width: 100%;
    justify-content: center;
    border: none;
    padding: 14px 8px;
    background: transparent;
  }
  .lang-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.15);
	min-width: auto;
	border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .lang-switcher.active .lang-menu {
    max-height: 250px;
  }
  .strelajzk{
	margin-left:16px; 
	}
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: url('/images/pool.jpg') center center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}
.hero h1 {
  margin-bottom: 12px;
  font-size: 2.5rem;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}
.hero h2 {

  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
/* Mobile Hero */
.hero-mobile { display:none; }
@media (max-width:600px){
  .hero {
    height:60vh;
    background:none;
  }
  .hero::after { display:none; }
  .hero-mobile {
    display:block;
    width:100%;

    object-fit:cover;
  }
}

/* ===== Booking Widget ===== */
.widget-top {
  box-sizing: border-box;
  width:100%;
  position: relative;
  z-index:3;
  background-color: #F9F3F2
}
.widget-top .widget-inner{
	display:flex;
	flex-direction: column;
}
.TEwsWidgetInc{
  margin-top: -72px;
  width: 100%;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 2rem
}
 .rve_iniciowidget_V11{
	 background-color: #F9F3F2 !important;
}
.rve_valoraciones_V11{
	width:auto !important;
}
.rve_capa_izq .rve_info_seguridad{
	width:auto !important;
}
.daterangepicker{
	top: 96% !important;
    left: 15% !important;
}
@media (max-width:600px){
.daterangepicker{
	top: 50% !important;
    left: 10% !important;
}
}
#TSS2_capa_padre{
	padding: 0 6rem;
}
@media (max-width:768px){
	.rve_fila_fecha_texto_dia{
		font-size:32px !important;
	}
	.rve_rating_padre{
		font-size:32px !important;
	}
	.rve_rating_padre span{
		font-size:16px !important;
	}
	.widget-top iframe,
	.widget-top .TEwsWidgetInc{
	  padding-left: 1rem;
  	  padding-right: 1rem;	
	}
	.rve_fila_fecha_fechas{
	  padding-left: 4% !important;
	}
	#TSS2_capa_padre{
	padding: 0 1rem;
	}
}
/* ===== Cards ===== */
.alojamientos {
  padding:4rem 6rem;
  background:#f9f3f2;
  text-align:center;
}
.alojamientos h2{
	color:var(--brand);
	font-size:2rem;
	margin-bottom:20px;
	text-align:center;
}
.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(196px,1fr));
  gap:1rem;
  margin-top:30px;
  align-items:start;
}
.card {
  background:#fdf6ed;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  transition:transform .25s;
}
.card img {
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.card-body h3 { 
	line-height:1.2;
	margin-bottom:12px;
	font-size:1.5rem;
	color:var(--brand); 
	text-align: left;
}
.card-body p{
	line-height:1.5;
	font-size:1rem;color
	:#505457;
	text-align: left;
}
.card:hover { transform:translateY(-4px); }
.card-body { padding:12px;}
	@media (max-width:1024px){
		.cards{grid-template-columns: 1fr 1fr;}
	 }
	 @media (max-width:768px){
		 .alojamientos {padding:2.5rem 1rem;}
		.cards{grid-template-columns: 1fr;}
	 }
/* ===== Experiencia ===== */
.experiencia {
  position: relative;
  background: url('/images/casa.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.experiencia::before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.45);
}
.experiencia h2 {
  position:relative;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}
.experiencia p {
  position:relative;
  font-size: 1rem;
  color: #fff;
}

/* ===== Galería ===== */
.galeria {
  padding:64px 96px;
  text-align:center;
  background:#f9f3f2
}
	 @media (max-width:768px){
		 .galeria {padding:2.5rem 1rem;}
}
.galeria h2{
	color:var(--brand);
	font-size:2rem;
	margin-bottom:20px;
	text-align:center;
}
.galeria .swiper {
  width:100%;
  max-width:1020px;
  margin:0 auto;
  height: 420px;
}
.galeria img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
}
	@media(max-width:600px){
      .galeria .swiper { height:220px; }
	}

/* Reviews */
.reviews{padding: 4rem 6rem;}
	@media (max-width:768px){
	  .reviews {padding:2.5rem 1rem;}
	 }
.reviews h2 { text-align: center;color:var(--brand); font-family:'Playfair Display', serif; font-size: 2rem; margin-bottom:1.5rem;margin-top: 40px; }
.reviews .slider-container {
  max-width: 100%;
  margin: 40px auto;
  position: relative;
  padding-left: 96px;
  padding-right: 96px;
  padding-bottom: 15px;
}

.reviews-swiper {
  width: 100%;
}
.reviews .swiper-slide {
  background: #f9f3f2;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
}
/* Arrows outside slides */
.reviews-prev, .reviews-next {
  color: #A66E35;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  background: #f9f3f2;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 0;
  font-weight: 600;
  --swiper-navigation-size: 36px;
}
.reviews-prev { left: 0px; }  /* slightly outside slider */
.reviews-next { right: 0px; } /* slightly outside slider */
.reviews .review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews .review-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviews .review-author { font-weight: bold; }
.reviews .review-rating { color: #f5b301; font-size: 14px; margin-top: 2px; }
.reviews .review-text { margin-top: 10px; font-size: 14px; line-height: 1.4em; flex-grow: 1; }

/* Pagination */
.reviews-pagination { bottom: -16px !important;}
.reviews .swiper-pagination-bullet { background: #ccc; }
.reviews .swiper-pagination-bullet-active { background: #333; }


/* ===== Mapa ===== */
.mapa iframe {
  width:100%;
  min-height:400px;
  border:0;
}

/* ===== Footer ===== */
footer {
  background:#996633;
  color:#fff;
  padding:25px;
  text-align:center;
}
footer .legal-links {
  margin:10px 0;
  font-size:.9rem;
}
footer a {
  color:#fff;
  margin:0 8px;
}
footer a:hover {
  text-decoration:underline;
}

/* ===== Cookie Banner ===== */
#cookie-banner {
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#333;
  color:#fff;
  padding:10px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:.9rem;
  z-index:9999;
  gap:10px;
  flex-wrap:wrap;
}
#cookie-banner a{
	color:#f7c08a;
	text-decoration:underline;
}
#cookie-banner button {
  background:var(--brand);
  color:#fff;
  border:none;
  padding:6px 14px;
  cursor:pointer;
  border-radius:4px;
}
#cookie-banner button:hover { opacity:.85; }



