body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-image: url("../assets/grasstile_seamless.jpg");
  background-repeat: repeat;
  background-size: 400px 400px; /* smaller = finer grass */;
  margin: 0;
  padding: 0 1rem;
}
header, section {
  margin-bottom: 2rem;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: left;
}
.buttons button {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}
.hero-text {
  flex: 1 1 70%;
}
.hero-video {
  max-width: 200px;
  max-height: 200px;
  flex: 1 1 15%;
  min-width: 200px;
}

.hero-title {
  color: #FFF; 
  font-size: 2.5rem;
  text-align: center;
  width: 100%;
  margin: 1rem 0;
}

.hero-text {
  font-size: 1.6rem;
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.35);
  padding: 2rem;
  border-radius: 80px;

}
section {
  background-color: rgba(255, 255, 255, 0.35);
  padding: 4rem;
  border-radius: 80px;
  font-size: 1.4rem;
}
.hero-video video,
.hero-video img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1rem;
}
a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.5em 1em;
  border-radius: 5px;
  text-decoration: none;
  color: blue; /* Make link text blue again */
  transition: background-color 0.3s ease;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

