@font-face {
  font-family: "Gotham";
  src: url("/font/Gotham-Medium.ttf") format("woff2"),
    url("/font/Gotham-Medium.ttf") format("woff"),
    url("/font/Gotham-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

:root {
  --primary: #f4b942;
  --secondary: #2d3436;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gotham", sans-serif !important;
}

body {
  background-color: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
  font-family: "Gotham", sans-serif !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 30px;
}

.hero {
  background-color: #fff;
  border-radius: 2px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  color: #f4b942;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero p {
  color: #4a5568;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
}

.congregation-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 2rem 0;
  opacity: 0;
  transform: scale(0.95);
}

.beliefs-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.belief-card {
  background: #fff;
  border-radius: 2px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.belief-card:hover {
  transform: translateY(-5px);
}

.belief-card h3 {
  color: #f4b942;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.belief-card p {
  color: #4a5568;
  font-size: 1rem;
}

.belief-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .hero {
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .congregation-img {
    height: 300px;
  }

  .beliefs-section {
    grid-template-columns: 1fr;
  }
}

.main-hero {
  position: relative;
  height: 65vh;
  background-image: url("/images/pexels-rickyrecap-2061525.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  padding: 20px;
  border-radius: 10px;
  font-size: 1.5rem;
}
