
/* ---------- Base ---------- */
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #75f0a5;
  color: #222;
  line-height: 1.5;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  color: #c62828;
  text-decoration: none;
}

/* ---------- Header ---------- */
header {
  background: green;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

nav a {
  margin-left: 1.25rem;
  font-weight: 500;
  color: white;
}

.logo{
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ---------- Hero ---------- */
.hero {
  box-sizing: border-box;
  width: 100%;
  padding: 0 2rem;
  background-size: cover;
  background-image: url("assets/heiseifrontpic.jpg");
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

.hero h1 {
  font-size: 2.3rem;
  padding: 10px;
  background: rgba(225, 225, 225, 0.5);

}

/*------------ Slide show --------- */
.gallery {
  width: 100%;
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

.gallery h2 {
  margin-bottom: 1.5rem;
}

.slideshow {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.dots {
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 4px;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #c62828;
}


/* ---------- Categories ---------- */
.categories {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.category {
  background: white;
  border: 1px solid #eee;
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* ---------- News Section ---------- */
.news {
  width: 90%;
  margin: 4rem auto;
  padding: 0 2rem;
}

.news h2 {
  margin-bottom: 1rem;
  text-align: center;
  padding: 10px;
  background: rgba(225, 225, 225, 0.5);
}

.news-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.news-item {
  min-width: 240px;
  background: white;
  border: 1px solid #eee;
}

.news-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.news-item p {
  padding: 0.75rem;
  font-size: 0.9rem;
}

/* ---------- Social Feeds ---------- */
.social-feeds {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.social-feeds h2 {
  margin-bottom: 2rem;
}

.social-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.social-block {
  background: white;
  border: 1px solid #eee;
  padding: 1.5rem;
}

.social-block h3 {
  margin-bottom: 1rem;
}

.social-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}


.hours {
  max-width: 90%;
  margin: auto;
  text-align: center;
}

.visit {
  max-width: 90%;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}
/* ---------- Footer ---------- */
footer {
  margin-top: 4rem;
  padding: 2rem;
  background: green;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 0.85rem;
  color: white;
}

