/*!
 * components.css
 *
 * Components transversals i ajustes varis.
 *  - EFECTOS: dancing-text
 *  - DRAWER personalizado (custom-drawer)
 *  - CONTENIDO: .entry-content-wrap
 *  - FOOTER: #menu-legal-menu
 *  - OTROS: .flecha-oferta
 *  - AJUSTES VARIOS: .borde-no
 *  - BLOQUE ICONOS AISLADO: col-icons
 *  - er-reserva-col transition
 */

/* =========================================================
   💃 EFECTOS Y ANIMACIONES
========================================================= */
.dancing-text {
  transform: rotate(-10deg);
  display: inline-block;
  transform-origin: center;
}

/* =========================================================
   🧭 DRAWER PERSONALIZADO
========================================================= */

/* Estado inicial */
.custom-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 35%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

/* Estado activo */
.custom-drawer.active {
  right: 0;
}

/* Versión móvil */
@media (max-width: 768px) {
  .custom-drawer {
    width: 100%;
    max-width: 100%;
  }
}

/* Botón cerrar */
.custom-drawer .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   📦 CONTENIDO
========================================================= */
.entry-content-wrap {
  padding: 0 !important;
}

/* =========================================================
   ⚙️ FOOTER
========================================================= */
.site-bottom-footer-wrap #menu-legal-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}


/* =========================================================
   🎯 OTROS ELEMENTOS
========================================================= */
.flecha-oferta {
  transform: rotate(90deg);
  display: inline-block;
  transform-origin: center;
}



/* =========================================================
   🚫 AJUSTES VARIOS
========================================================= */
.borde-no {
  border-right: 3px !important;
}



/* =========================================================
   🧩 BLOQUE DE ICONOS AISLADO (solo dentro de .col-icons)
========================================================= */

/* Contenedor general */
div.col-icons.is-horizontal.wp-block-group {
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cada columna */
div.col-icons .pila-icons.wp-block-group {
  flex: 1 1 28%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Fila de iconos */
div.col-icons .fila-icons.wp-block-group {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 0 !important;
}

/* Iconos */
div.col-icons .fila-icons img {
  width: 34px;
  height: auto;
  opacity: 0.75;
  vertical-align: middle;
  transform: translateY(2px);
  transition: opacity 0.2s ease;
}

div.col-icons .fila-icons img:hover {
  opacity: 1;
}

/* Texto */
div.col-icons .pila-icons p {
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
  max-width: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  div.col-icons.is-horizontal.wp-block-group {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  div.col-icons .pila-icons.wp-block-group {
    flex: 1 1 100%;
    gap: 4px;
  }
}

.er-reserva-col .kt-btn-inner-text {
	transition: color .2s ease;
}

/* =========================================================
   TOKENS TIPOGRÀFICS + UTILITATS GLOBALS
   Variables de font reutilitzables a tot el lloc i dues
   utilitats: .kicker (avanttítol) i .lead (paràgraf destacat).
   La font Playfair Display s'encua a functions.php (Google Fonts).
========================================================= */
:root {
	--font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.kicker {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #6B6B6B;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.lead {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	line-height: 1.5;
	color: #1A1A1A;
	margin-bottom: 1.25rem;
}
	

