@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary-color: #1A2B48;
  --secondary-color: #C5A059;
  --text-color: #171717;
  --bg-color: #ffffff;
  --accent-gold: #D4AF37;
  --light-gray: #f9f9f9;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 100px 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary-color);
  /* The background image should be a blurred harbor view */
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('https://images.unsplash.com/photo-1559121225-4c9675276ac0?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px;
  max-width: 800px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 35px;
  font-weight: 300;
}

/* Navigation */
nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #253d66;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 43, 72, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #b38f4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Accents and Details */
.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 20px auto;
}

.service-card {
  background: var(--bg-color);
  padding: 40px;
  border: 1px solid #eee;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px);
}

.service-card h3 {
  margin-bottom: 15px;
}

/* High Contrast Adjustments */
a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--secondary-color);
}

/* Typography Utility */
.highlight {
  color: var(--secondary-color);
}

.serenity-text {
  font-style: italic;
  color: var(--primary-color);
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

footer .logo {
  color: var(--secondary-color);
  margin-bottom: 30px;
  display: block;
}

footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
}