body {
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  background-color: #a4a4a4;
  color: black;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #282b28;
  color: #ffffff;
  padding: 8px;
  width: 100%;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  padding-left: 20px;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding-right: 20px;
}

.contact a:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  background-color: #282b28;
  padding: 10px 0;
  width: 100%;
}

nav p {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
}

nav a:hover {
  text-decoration: underline;
}

/* Banner */
.banner {
  width: 100%;
  padding: 40px 20px;
  background-image: url("../img/got.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 2px 2px 5px black;
}

/* Table Section */
.club-table-section {
  background-color: #f0f0f0;
  padding: 20px;
  width: 100%;
}

.club-table {
  width: 90%;
  border-collapse: collapse;
  margin: 0 auto;
  background: white;
}

.club-table th,
.club-table td {
  border: 1px solid #333;
  padding: 10px;
  text-align: center;
}

/* Form Section */
.contact-main {
  max-width: 100%;
  width: 100%;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.8rem;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background-color: #222;
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
}

/* Responsive - hide table on mobile */
@media (max-width: 600px) {
  .club-table {
    display: none;
  }
}
