:root {
  --bg-dark: #050608;
  --bg-darker: #020305;
  --bg-light: #f7f7f8;
  --accent-gold: #c9a15a;
  --accent-gold-soft: rgba(201, 161, 90, 0.2);
  --text-main: #f5f5f5;
  --text-dark: #111111;
  --muted: #a0a0a5;
  --border-subtle: #2a2a30;
  --radius-card: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 8, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.nav-cta:hover {
  background: var(--accent-gold);
  color: #050608;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(5, 6, 8, 0.95)),
    url("../img/capetown-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201, 161, 90, 0.25), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 640px;
  padding: 80px 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: #d8d8dd;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-primary {
  background: var(--accent-gold);
  color: #050608;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  background: #e0b96b;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-darker);
  color: var(--text-main);
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 18px;
}

.section p {
  margin-bottom: 12px;
}

/* Layouts */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.center {
  text-align: center;
  margin-bottom: 32px;
}

/* Cards & lists */
.card {
  background: rgba(10, 11, 15, 0.9);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.section-light .card {
  background: #ffffff;
  border-color: #e3e3ea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin-bottom: 6px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
}

/* Links */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

/* Forms */
.booking-form {
  background: rgba(10, 11, 15, 0.9);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.section-light .booking-form {
  background: #ffffff;
  border-color: #e3e3ea;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-light .form-row label {
  color: #666a72;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #3a3a42;
  background: #050608;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.95rem;
}

.section-light .form-row input,
.section-light .form-row select,
.section-light .form-row textarea {
  background: #fdfdfd;
  color: #111111;
  border-color: #d0d0d8;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* Footer */
.site-footer {
  background: #020204;
  color: #d0d0d5;
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  max-width: 260px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 6px;
}

.footer-links h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.powered-by a {
  color: var(--accent-gold);
  text-decoration: none;
}

.powered-by a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

