/* Home page sections — only loaded on index.html.
 * Order roughly follows the page: hero → intro → features → gallery →
 * location → booking (incl. platforms + contact form) → follow.
 */

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url('../hero.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  margin-bottom: 15vh;
  animation: fadeUp 1.2s ease-out;
}

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

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3em;
}

.hero-title span {
  display: inline-block;
  font-weight: 500;
  color: var(--gold);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 3rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 0 30px rgba(0,0,0,0.3);
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.hero-cta {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2.5rem;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 1.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ===== INTRO ===== */
.intro {
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
}

.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.intro p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  background: var(--cream);
  padding: 6rem 2rem;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  padding: 2.5rem;
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.feature-card p {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #777;
}

/* ===== GALLERY PLACEHOLDER ===== */
.gallery {
  padding: 6rem 2rem;
  text-align: center;
}

.gallery-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 2rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: attr(data-label);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terracotta);
  opacity: 0.6;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ===== LOCATION (moodboard tones) ===== */
.location {
  position: relative;
  background: var(--cream);
  color: var(--charcoal);
  padding: 7rem 1.5rem 8rem;
  overflow: hidden;
}

.location::before {
  /* Subtle paper-grain so the cream has tooth */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='loc'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23loc)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.location::after {
  /* Soft sand arch peeking from below — decorative */
  content: '';
  position: absolute;
  left: 50%;
  bottom: -260px;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: var(--sand);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.location > * {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.location > .lang-switch { max-width: 1080px; }

.location-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
}

.location-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}

.location-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.location-lead {
  font-size: 1rem;
  font-weight: 300;
  color: #6a6a66;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.85;
}

.location-intro::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0.4rem auto 0;
}

/* Highlight cards */
.location-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}

.highlight-card {
  text-align: left;
  padding: 1.9rem 1.5rem 1.7rem;
  border: 1px solid rgba(196, 112, 75, 0.12);
  background: var(--warm-white);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 1px;
  background: var(--terracotta);
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 112, 75, 0.3);
  box-shadow: 0 18px 40px -16px rgba(196, 112, 75, 0.22);
}

.highlight-icon {
  font-size: 1.05rem;
  color: var(--terracotta);
  opacity: 0.85;
  margin-bottom: 1.4rem;
  line-height: 1;
}

.highlight-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.6rem;
}

.highlight-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.highlight-sub {
  font-size: 0.72rem;
  color: rgba(44,44,44,0.45);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Detail blocks */
.location-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  margin-bottom: 4rem;
}

.location-block {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 112, 75, 0.18);
  position: relative;
}

.location-block::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.location-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--charcoal);
  letter-spacing: 0.005em;
}

.location-block p {
  font-size: 0.92rem;
  font-weight: 300;
  color: #6a6a66;
  line-height: 1.85;
}

/* Map */
.location-map {
  border: 1px solid rgba(196, 112, 75, 0.18);
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(40, 30, 20, 0.18);
  background: var(--warm-white);
  padding: 6px;
}

.location-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* In-section language switch (Location header) */
.lang-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(44,44,44,0.35);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}

.lang-btn.active { color: var(--terracotta); }
.lang-btn:hover  { color: var(--charcoal); }

.location .lang-switch {
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  margin-top: -1rem;
}
.location .lang-btn         { color: rgba(44,44,44,0.4); }
.location .lang-btn.active  { color: var(--terracotta); }

/* ===== BOOKING ===== */
.booking {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.booking h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.booking p {
  font-weight: 300;
  color: #888;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.booking-btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--terracotta);
  text-decoration: none;
  padding: 1.1rem 3rem;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}

.booking-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 112, 75, 0.25);
}

/* ===== BOOKING PLATFORMS ===== */
.platforms {
  max-width: 720px;
  margin: 2.5rem auto 3rem;
}

.platforms-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(44,44,44,0.45);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.platforms-label::before,
.platforms-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(44,44,44,0.15);
}

.platforms-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.2rem 1.25rem;
  background: var(--warm-white);
  border: 1px solid rgba(196, 112, 75, 0.14);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.platform-card[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.7;
}

.platform-card:not([aria-disabled="true"]):hover {
  transform: translateY(-3px);
  border-color: rgba(196, 112, 75, 0.4);
  box-shadow: 0 14px 30px -12px rgba(196, 112, 75, 0.25);
}

.platform-logo {
  height: 26px;
  display: flex;
  align-items: center;
}
.platform-logo svg,
.platform-logo img {
  height: 100%;
  width: auto;
  display: block;
}
.platform-logo--kare {
  height: 42px;
  margin: -8px 0;
}

.platform-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.platform-card[aria-disabled="true"] .platform-row-bottom {
  color: rgba(44,44,44,0.4);
}

.platform-arrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.platform-card:not([aria-disabled="true"]):hover .platform-arrow {
  transform: translateX(4px);
}

.platform-status {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(44,44,44,0.4);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  margin-bottom: 1rem;
}

.contact-form label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid rgba(44,44,44,0.2);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .booking-btn {
  width: 100%;
  margin-top: 0.5rem;
}

#form-status {
  font-size: 0.85rem;
  padding: 0.5rem 0;
  min-height: 1.5rem;
  text-align: center;
}

#form-status.success { color: var(--olive); }
#form-status.error   { color: var(--terracotta); }

/* ===== FOLLOW CTA ===== */
.follow-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--terracotta);
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  transition: all 0.3s ease;
  border: none;
}

.follow-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196,112,75,0.25);
}

.follow-sub {
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.05em;
  margin-bottom: 0 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .platforms-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .location { padding: 5rem 1.2rem 6rem; }
  .location-highlights { grid-template-columns: 1fr 1fr; }
  .location-blocks { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: span 1; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .platforms-row { grid-template-columns: 1fr; }
}
