/* --- Global Styles & Variables (from globals.css) --- */
:root {
  --background-color: #f9f9f9;
  --text-color: #171717;
  --primary-green: #2e5946;
  --primary-green-hover: #3d6b55;
  --text-gray: #374151; /* text-gray-700 */
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /*font-family: Arial, Helvetica, sans-serif;*/
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

/* --- Navbar (from layout.tsx) --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 12px */
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-image {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.025em;
}

.nav-links {
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links > * {
  margin-left: 1.5rem; /* 24px */
  vertical-align: middle;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* --- Main Content & Hero Section (from page.tsx) --- */
main {
  padding-top: 3rem; /* 48px */
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 72px - 48px); /* 100vh minus navbar and main padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* --- Decorative Background Card (from page.tsx) --- */
.background-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  filter: blur(4px);
  opacity: 0.1;
  z-index: 0;
}

.card-content {
  background-color: white;
  padding: 1.5rem; /* 24px */
  border-radius: 0.5rem; /* 8px */
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  width: 300px;
}

.card-content h3 {
  margin: 0;
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  color: var(--primary-green);
}

.card-content p {
  margin: 0.25rem 0 0 0;
  font-size: 0.75rem; /* 12px */
  color: var(--text-gray);
}

.card-content span {
  font-weight: 700;
}

/* --- Hero Content (from page.tsx) --- */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem; /* 48px */
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0;
}

.hero-content p {
  margin-top: 1rem; /* 16px */
  color: var(--text-gray);
  font-size: 1.125rem; /* 18px */
  max-width: 36rem; /* 576px */
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem; /* 32px */
  background-color: var(--primary-green);
  color: white;
  padding: 0.75rem 1.5rem; /* 12px 24px */
  border: none;
  border-radius: 0.5rem; /* 8px */
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--primary-green-hover);
}

/* --- Media Query for larger screens --- */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.75rem; /* 60px */
  }
}
