@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700&family=Source+Sans+3:wght@300;400&display=swap');

:root {
  --color-text: #5A4F4C;
  --color-accent: #5B7F8C;
  --color-bg: #FFFFFF;
  --color-bg-alt: #EDE7E0;
  --font-heading: 'Mulish', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius-pill: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.22);
}

/* Soft top scrim so header text stays legible over bright skies.
   Taller than the header itself so it dissolves into the photo with no hard edge. */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.16) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: -1;
}

.site-header__logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.site-header__nav {
  display: flex;
  gap: 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-header__nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  width: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Buttons */
.btn-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pill:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-filled:hover {
  box-shadow: 0 8px 20px rgba(91, 127, 140, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

.btn-filled {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroDrift 18s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.12) 40%, rgba(0,0,0,0.55) 100%);
}

/* Legibility shadow on hero text only (not on light-surface widgets like the booking bar) */
.hero .eyebrow,
.hero__headline,
.hero__subheadline {
  text-shadow: 0 1px 2px rgba(0,0,0,0.32), 0 2px 20px rgba(0,0,0,0.25);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 56px 72px;
  max-width: 780px;
  animation: heroRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.15s;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.15;
  margin: 14px 0 16px;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 19px);
  margin-bottom: 28px;
  max-width: 560px;
}

@keyframes heroDrift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero__content { animation: none; }
}

@media (max-width: 640px) {
  .site-header { padding: 20px 24px; }
  .site-header__nav { display: none; }
  .hero__content { padding: 0 24px 48px; }
}
