/* Laguna Strelitzia – teaser / placeholder */

:root {
  --color-text: #1f2933;
  --color-muted: #52606d;
  --color-bg: #f5f7fa;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --space: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-fade 28s ease-in-out infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -4s; }
.hero-slide:nth-child(3) { animation-delay: -8s; }
.hero-slide:nth-child(4) { animation-delay: -12s; }
.hero-slide:nth-child(5) { animation-delay: -16s; }
.hero-slide:nth-child(6) { animation-delay: -20s; }
.hero-slide:nth-child(7) { animation-delay: -24s; }
.hero-slide:nth-child(8) { animation-delay: -28s; }

@keyframes hero-fade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  22% { opacity: 1; }
  28% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  padding: var(--space);
}

.hero-overlay h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  margin: 0.4em 0 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-cta {
  display: inline-block;
  margin-top: var(--space);
  padding: 0.6em 1.4em;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2933;
  transition: background 0.3s ease;
}

.hero-cta:hover {
  background: #fff;
}

/* 404 page */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space);
  background: #fff;
  color: var(--color-text);
}

.page-404 h1 {
  margin: 0 0 var(--space);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.page-404 .btn-home {
  display: inline-block;
  padding: 0.6em 1.4em;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1f2933;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.page-404 .btn-home:hover {
  background: #323f4b;
}
