/* Self-hosted Bely fonts */
@font-face {
  font-family: 'bely';
  src: url('/fonts/Bely-Regular.woff2') format('woff2'),
       url('/fonts/Bely-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'bely';
  src: url('/fonts/Bely-Bold.woff2') format('woff2'),
       url('/fonts/Bely-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'bely';
  src: url('/fonts/Bely-Italic.woff2') format('woff2'),
       url('/fonts/Bely-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'bely-display';
  src: url('/fonts/BelyDisplay-Regular.woff2') format('woff2'),
       url('/fonts/BelyDisplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-family: bely, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-container {
  height: 100vh;
  width: 100%;
  background-image: url('./attached_assets/carrots.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-card {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0);
}

.content-card h1 {
  font-family: bely-display, sans-serif;
  font-size: 4rem;
  font-weight: normal;
  color: white;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
}

.content-card p {
  font-size: 1.5rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.content-card p:last-child {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: white
}

a:hover {
  text-decoration: underline;
  color: white
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-card {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .content-card h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }

  .content-card p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 25px 15px;
  }

  .content-card h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .content-card p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}