/* Save this as style.css */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  color: white;
  align-items: center;
}

header {
  background: #e5b12a;
  padding: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #004919;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('choirbanner.png') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background: #f4c542;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  margin: 10px;
}

footer {
  background: black;
  padding: 20px;
  text-align: center;
}

body {

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background: #f4c542;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  margin: 10px;
}

footer {
  background: black;
  padding: 20px;
  text-align: center;
}


.question-box {
  background: #1e1e1e;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  width: 80%;
  text-align: left;
}

.question-box h3 {
  margin-top: 0;
}

textarea {
  width: 100%;
  min-height: 80px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  resize: vertical;
  font-size: 16px;
}

button {
  margin-top: 10px;
  padding: 10px 18px;
  background: #f4c542;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.comment {
  background: #2a2a2a;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
}

