/* Wonderstory enlaces-page.css — link-in-bio page styles */
/* Mobile-first: default = 390px */
/* Structure copied from YOULO /lib/, brand = Wonderstory */

.enlaces-page {
  scroll-behavior: smooth;
}

/* Kill any gap between header and content */
.enlaces-page #ws-header {
  margin-bottom: 0;
}
.enlaces-page #ws-header + .enlaces-greeting,
.enlaces-page #ws-header + script + .enlaces-greeting {
  margin-top: 0;
}

/* ─── CSS Variables ─── */
.enlaces-page {
  --copper: #976338;
  --gold: #B5803C;
  --dark: #292929;
  --dark-secondary: #3E3E3E;
  --light-bg: #F8F6F4;
  --cream: #EFEBE5;
  --white: #FFFFFF;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ─── Section 1: Greeting (avatar + text) ─── */
.enlaces-greeting {
  background-color: var(--light-bg);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.enlaces-greeting__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.enlaces-greeting__text {
  font-family: 'soleilLight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
}

h1.enlaces-greeting__text {
  font-size: 16px;
  font-weight: 400;
}

/* ─── Section 2: Quick Links ─── */
.enlaces-links {
  background-color: var(--light-bg);
  padding: 16px 16px 16px;
}

.enlaces-links__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.enlaces-links__card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-family: 'soleilRegular', sans-serif;
  font-size: 16px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.enlaces-links__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.enlaces-links__card::after {
  content: '\2192';
  font-size: 18px;
  color: var(--copper);
  flex-shrink: 0;
  line-height: 1;
}

/* ─── Section 3: Social Bar ─── */
.enlaces-social {
  background-color: var(--light-bg);
  padding: 12px 16px 24px;
}

.enlaces-social__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.enlaces-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  border-radius: 50%;
}

.enlaces-social__icon:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

.enlaces-social__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

/* ─── Section 4: Reviews (BRB) ─── */
.enlaces-reviews {
  background-color: var(--light-bg);
  padding: 20px 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.enlaces-reviews__label {
  font-family: 'soleilRegular', sans-serif;
  font-size: 12px;
  text-align: center;
  color: var(--dark);
  opacity: 0.5;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* BRB overflow fix */
.enlaces-reviews__embed,
.enlaces-reviews__embed .rpi,
.enlaces-reviews__embed .rpi-cnt {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}

/* ─── Section 5: Booking (Acuity) ─── */
.enlaces-booking {
  background-color: var(--light-bg);
  padding: 40px 16px;
}

.enlaces-booking__title {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin: 0 0 24px;
}

.enlaces-booking__iframe-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.enlaces-booking__iframe-wrap iframe {
  border: 0;
  width: 100%;
  display: block;
}



/* ─── Breakpoint: tablet 768px ─── */
@media (min-width: 768px) {
  .enlaces-greeting__avatar {
    width: 130px;
    height: 130px;
  }

  .enlaces-links__grid {
    grid-template-columns: 1fr 1fr;
  }

  .enlaces-booking__title {
    font-size: 44px;
  }
}

/* ─── Breakpoint: desktop 1024px ─── */
@media (min-width: 1024px) {
  .enlaces-links__grid {
    padding: 0;
  }

  .enlaces-booking__iframe-wrap {
    padding: 0;
  }


}
