/*
Theme Name: Leah & Co.
Theme URI: https://leah.travel
Author: GT Creative Solutions
Author URI: https://leah.travel
Description: Custom block theme for Leah & Co. — a curated travel advisory, coastal real-estate referral practice, and brand studio. Built on WordPress Full Site Editing.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
License URI: https://leah.travel
Text Domain: leah-and-co
Tags: block-theme, full-site-editing, travel, lifestyle, custom-colors, custom-logo, editor-style, featured-images, full-width-template
*/

/* ----- Global polish ----- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Italic emphasis — used liberally per the brand voice guide */
em, i { font-style: italic; }

/* ----- Ken Burns motion for the hero ----- */
.wp-block-cover.is-style-ken-burns .wp-block-cover__image-background,
.wp-block-cover.is-style-ken-burns img.wp-block-cover__image-background {
  animation: leahKenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes leahKenBurns {
  0%   { transform: scale(1.00) translate(0%, 0%); }
  100% { transform: scale(1.12) translate(-2%, -2%); }
}

@media (prefers-reduced-motion: reduce) {
  .wp-block-cover.is-style-ken-burns .wp-block-cover__image-background,
  .wp-block-cover.is-style-ken-burns img.wp-block-cover__image-background {
    animation: none;
  }
}

/* ----- Pill CTA hover lift ----- */
.wp-block-button .wp-block-button__link {
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.wp-block-button .wp-block-button__link:hover {
  transform: translateY(-1px);
}

/* ----- Eyebrow label ----- */
.is-style-eyebrow {
  font-family: var(--wp--preset--font-family--inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wp--preset--color--coral);
}

/* ----- Service card top accent ----- */
.is-style-service-card {
  border-top: 3px solid var(--wp--preset--color--coral);
  background: #FFFFFF;
}

/* ----- Destination card overlay ----- */
.is-style-destination-card .wp-block-cover__inner-container {
  align-self: flex-end;
}
