.banner,
.mainbackground,
.quote-section {
  background-size: cover;
  background-position: center;
}
#quoteBtn,
header,
nav {
  background-color: #282b28;
}
#quoteText,
.banner,
.club-text,
.video-section,
footer {
  text-align: center;
}
.club,
.contact a,
.skip-link,
footer a,
nav a {
  text-decoration: none;
}
.contact a,
.logo,
.skip-link,
nav a {
  font-weight: 700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  font-family: "Times New Roman", serif;
  color: #000;
  background-color: #a4a4a4;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 8px 20px;
}
.logo {
  font-size: 28px;
}
.club-text,
nav a {
  font-size: 14px;
  color: #fff;
}
.contact a {
  color: #fff;
}
.contact a:hover,
footer a:hover {
  text-decoration: underline;
}
.banner {
  background-image: url("../img/got.png");
  color: #fff;
  text-shadow: 2px 2px 5px #000;
  padding: 40px 20px;
}
.banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.banner p {
  font-size: 18px;
}
nav {
  padding: 10px 0;
}
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
nav a {
  padding: 10px;
  transition: 0.3s;
}
nav a:hover {
  background-color: #444;
  color: #fff;
}
.mainbackground {
  background-image: url("../img/goof.JPG");
  padding: 40px 20px;
  flex: 1;
}
.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.club {
  background-color: #000000aa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
}
.club:hover {
  transform: scale(1.03);
}
.club img {
  width: 100%;
  height: auto;
  display: block;
}
.club-text {
  padding: 12px;
}
footer {
  padding: 1rem;
  background-color: #222;
  color: #fff;
}
footer a {
  color: #fff;
}
@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  .banner h1 {
    font-size: 24px;
  }
  .banner p {
    font-size: 14px;
  }
}
@media print {
  footer,
  nav {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
}
.video-section {
  background-color: #1e1e1e;
  color: #fff;
  padding: 40px 20px;
}
.video-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.video-section video {
  max-width: 800px;
  width: 100%;
  height: auto;
  border: 3px solid #a4a4a4;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 768px) {
  .club-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .hamburger {
    display: block;
    padding: 10px 20px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    padding: 10px 0;
  }
  .nav-links.show {
    display: flex;
    animation: 0.4s fadeIn;
  }
}
.quote-section {
  background-image: url("../img/got.png");
  color: #fff;
  text-shadow: 1px 1px 5px #000;
  border-top: 4px solid #222;
  border-bottom: 4px solid #222;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
}
#quoteBtn,
.skip-link {
  color: #fff;
  padding: 8px 16px;
}
#quoteBtn {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}
#quoteText {
  font-size: 18px;
  font-style: italic;
  max-width: 700px;
  margin-top: 10px;
}
.social-icons img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}
@media (max-width: 480px) {
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #282b28;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 10px;
}
