﻿<!-- =========================
FILE: css/index.css
========================= -->
:root {
  --bg: #f5fbfb;
  --bg-soft: #eef8f7;
  --panel: rgba(255, 255, 255, 0.9);
  --turquoise: #28c9c2;
  --turquoise-soft: #72ddd7;
  --deep: #15474c;
  --text: #355a5e;
  --muted: #6b8f92;
  --line: rgba(21, 71, 76, 0.1);
  --shadow: 0 18px 45px rgba(21, 71, 76, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fdfd 0%, #eef7f6 100%);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 26px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.96rem;
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: #dffffd;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(57, 139, 145, 0.18), rgba(10, 64, 70, 0.18)),
    url('../images/index-hero.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  display: none;
}

.hero-content {
  color: #ffffff;
} {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.hero h1,
.signature-section h2,
.reservation-box h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep);
  line-height: 1.05;
}

.hero h1
{
  color: #ffffff;
} {
  font-size: clamp(3.1rem, 7vw, 6.1rem);
  margin-bottom: 60px;
}

.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  transition: 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--turquoise) 0%, #67d9d3 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(40, 201, 194, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(21, 71, 76, 0.16);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.signature-section,
.highlights,
.reservation-banner {
  padding: 110px 0;
}

.signature-section {
  background: #cfeeed;
}

.highlights {
  background: #bfe7e5;
}

.reservation-banner {
  background: #cfeeed;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.signature-section h2,
.reservation-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 22px;
}

.feature-card,
.card,
.reservation-box {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 71, 76, 0.08);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 36px;
  border-radius: 28px;
}

.feature-card h3 {
  color: var(--deep);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.feature-card ul {
  padding-left: 20px;
  color: var(--text);
}

.feature-card li + li {
  margin-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 34px 30px;
  border-radius: 24px;
}

.card h3 {
  color: var(--deep);
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
}

.reservation-box {
  border-radius: 30px;
  padding: 38px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(236,248,247,0.96));
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #f2f9f8;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a,
.site-footer p {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--turquoise);
}

@media (max-width: 920px) {
  .grid-two,
  .cards,
  .reservation-box,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .brand,
  .nav a {
    color: var(--deep);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
