/* Hero Section */
.hero {
  background: url('https://via.placeholder.com/1920x600') center/cover no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  background: #520101;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ffd700;
  color: #520101;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
}

.btn.secondary:hover {
  background: #ffd700;
  color: #520101;
  border-color: #ffd700;
}

/* Process Section */
.quick-links {
  padding: 3rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.quick-links h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #520101;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.link-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.link-item:hover {
  transform: translateY(-5px);
}

.link-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #520101;
}

.link-item p {
  color: #666;
}

/* Visit Section */
.news {
  padding: 3rem 2rem;
  text-align: center;
}

.news h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #520101;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.news-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #520101;
}

.news-item p {
  color: #666;
  margin-bottom: 1rem;
}

.read-more {
  color: #520101;
  font-weight: 700;
}

.read-more:hover {
  color: #ffd700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .quick-links, .news {
    padding: 2rem 1rem;
  }

  .quick-links h2, .news h2 {
    font-size: 1.8rem;
  }
}

