/*
  Courtier Music – Modern refinement layer
  - Keep existing structure; gently upgrade typography, colors, spacing, buttons
  - No HTML removal; minimal, reusable overrides only
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;600&display=swap');

/* Design tokens */
:root {
  --brand-navy: #0D1B2A;
  --brand-navy-90: rgba(13, 27, 42, 0.9);
  --accent: #778DA9;
  --accent-hover: #6B829F;
  --surface: #ffffff;
  --surface-muted: #F6F7FA;
  --text: #0F172A; /* slate-900 */
  --text-muted: #475569; /* slate-600 */
  --border: rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 10px 25px rgba(2, 6, 23, 0.08);
}

/* Base */
html { scroll-behavior: smooth; }

body {
  color: var(--text);
  background: #FAFAFC;
  font-family: 'Inter', 'Mulish', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { line-height: 1.15; }
h2 { line-height: 1.2; }

p { color: var(--text-muted); line-height: 1.7; }

.section { padding: 96px 0; }

/* Header */
header {
  background: var(--brand-navy-90) !important;
  box-shadow: 0 6px 24px rgba(2, 6, 23, 0.12);
}

header ul li a {
  opacity: 0.9;
  transition: color .2s ease, opacity .2s ease, text-underline-offset .2s ease;
  text-underline-offset: 4px;
}
header ul li a:hover { opacity: 1; text-decoration: underline; }

.mobile-menu { background-color: var(--brand-navy); }

/* Logos – keep brand colours visible */
.logo-grid img { opacity: 0.95; transition: opacity .2s ease; }
.logo-grid img:hover { opacity: 1; }

/* Cards */
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
}

/* Story image frame accent – soften */
.our-story-image::before { background-color: var(--accent); opacity: 0.15; }

/* Over image titles */
.over-image-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Buttons */
.primary-button,
.secondary-button {
  --btn-padding-y: 14px;
  --btn-padding-x: 22px;
  --btn-radius: 9999px;
  --btn-font-wt: 600;
  font-weight: var(--btn-font-wt);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  box-shadow: none;
  top: 0 !important;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.primary-button {
  background: var(--accent) !important;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff !important;
}
.primary-button:hover { background: var(--accent-hover) !important; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(119,141,169,0.35); }
.primary-button:active { transform: translateY(0); box-shadow: none; }

/* Subtle arrow icon for primaries */
.primary-button::after {
  content: '→';
  display: inline-block;
  margin-left: 10px;
  transition: transform .15s ease;
}
.primary-button:hover::after { transform: translateX(2px); }

.secondary-button {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff !important;
}
.secondary-button:hover { background: rgba(255,255,255,0.06) !important; transform: translateY(-1px); }

/* Light theme secondary (when on light backgrounds) */
.ready-to-book .primary-button { border-color: rgba(255,255,255,0.28); }
.our-story .primary-button { border-color: rgba(2,6,23,0.12); }

/* Forms */
.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(119,141,169,0.15) !important;
}

/* Footer */
footer {
  border-top: 2px solid rgba(255,255,255,0.12) !important;
}
footer, footer p, footer a, .copyright p { color: #fff !important; }
footer h1, footer h2, footer h3, footer h4, footer h5 { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }

/* Dark-section premium gradients */
.ready-to-book {
  /* Subtle vignette for readability and depth */
  box-shadow: inset 0 120px 160px rgba(0,0,0,0.18),
              inset 0 -80px 140px rgba(0,0,0,0.22);
}

.values {
  box-shadow: inset 0 80px 140px rgba(0,0,0,0.25),
              inset 0 -60px 120px rgba(0,0,0,0.2);
}

footer {
  background-image: radial-gradient(800px 160px at 50% 0%, rgba(255,255,255,0.06), rgba(255,255,255,0));
  background-blend-mode: overlay;
}

/* Values grid – remove emojis and use refined cards */
.values .values-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.values .values-icon { display: none !important; }
.values .values-headline { margin: 0 0 8px; }
.values .values-text { color: rgba(255,255,255,0.9); }

/* Contact details – premium cards for email and phone */
.contact-details .contact-grid-4 { gap: 40px; align-items: stretch; }
.contact-details .contact-item:nth-child(2),
.contact-details .contact-item:nth-child(3) {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.contact-details .contact-item:nth-child(2)::before,
.contact-details .contact-item:nth-child(3)::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-details .contact-item:nth-child(2)::before {
  /* Mail icon (Feather-like) */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23778DA9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2' ry='2'/><polyline points='3,7 12,13 21,7'/></svg>");
}
.contact-details .contact-item:nth-child(3)::before {
  /* Phone icon (Feather-like) */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23778DA9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.86.36 1.7.7 2.49a2 2 0 0 1-.45 2.11L8.1 9.9a16 16 0 0 0 6 6l1.58-1.22a2 2 0 0 1 2.11-.45c.79.34 1.63.58 2.49.7A2 2 0 0 1 22 16.92z'/></svg>");
}
.contact-details .mini-subtitle { color: var(--text-muted) !important; }
.contact-details .contact-text { margin: 8px 0 0; font-size: 24px; }
.contact-details .contact-text a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dotted rgba(2,6,23,0.3);
}
.contact-details .contact-text a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Video hero text spacing */
.hero-video .container { padding: 28vh 0 !important; }
.hero-video h1 { text-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* Ensure legible type on image-backed sections */
.hero, .hero h1, .hero h2, .hero p, .hero a,
.hero-video, .hero-video h1, .hero-video h2, .hero-video p, .hero-video a,
.ready-to-book, .ready-to-book h2, .ready-to-book p, .ready-to-book a {
  color: #fff !important;
}
.ready-to-book h2, .hero h1, .hero h2 { text-shadow: 0 6px 22px rgba(0,0,0,0.35); }
.ready-to-book p { opacity: 0.95; }

/* Gentle darkening overlay via blend for image-backed sections */
.hero, .ready-to-book {
  background-color: rgba(0,0,0,0.35) !important;
  background-blend-mode: multiply;
}

/* Ensure legible type on dark sections like .values */
.values, .values h2, .values h3, .values p, .values a { color: #fff !important; }
.values h2 { text-shadow: 0 6px 22px rgba(0,0,0,0.35); }

/* FAQ refinements (without touching HTML) */
.faq-item { border-radius: 12px; border: 1px solid var(--border); }
.faq-question { background: #F2F4F7 !important; }

/* Utilities */
.mini-subtitle { color: #94A3B8 !important; letter-spacing: 0.14em; }

/* Responsive tweaks */
@media (max-width: 800px) {
  .section { padding: 72px 0; }
  .hero-video { height: 75vh; }
}

