:root {
  /* Color Palette - Converted/ approximated from oklch or kept as reference */
  --primary-color: #2dd4bf;
  /* Teal-400 approx */
  --primary-dark: #0f766e;
  /* Teal-700 */
  --secondary-color: #f3f4f6;
  /* Gray-100 */
  --accent-color: #fbbf24;
  /* Amber-400 */
  --text-main: #1f2937;
  /* Gray-800 */
  --text-muted: #6b7280;
  /* Gray-500 */
  --bg-color: #f9fafb;
  /* Gray-50 */
  --card-bg: #ffffff;

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
}

/* Custom Utilities */
.text-primary {
  color: var(--primary-dark) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: #009688;
  /* Teal matching the image */
  border-color: #009688;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #00796b;
  border-color: #00796b;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  padding: 0.75rem 0;
  background-color: white;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-family: var(--font-sans);
  color: #374151;
  /* Gray-700 */
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: #009688;
  /* Teal */
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  /* adjusted */
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Footer */
footer {
  background-color: white;
  border-top: 1px solid #e5e7eb;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
    max-height: 80vh;
    overflow-y: auto;
  }

  .hero-title {
    font-size: 2.5rem;
    /* Smaller on mobile */
  }

  .hero-section {
    height: auto;
    min-height: 600px;
    padding: 4rem 0;
  }
}

/* Desktop Absolute Centering for Nav Links */
@media (min-width: 992px) {
  .nav-center-desktop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .w-lg-auto {
    width: auto !important;
  }
}

.ratio-3x4 {
  --bs-aspect-ratio: 125%;
  /* 4:5 ratio */
}

.object-fit-contain {
  object-fit: contain;
}