* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Times New Roman", serif;
  color: black;
  background-color: #a4a4a4;
}

/* Wrapper */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

.contact a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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

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

.banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.banner p {
  font-size: 18px;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px;
  transition: 0.3s;
}

nav a:hover {
  background-color: #444;
  color: white;
}

/* Main Background */
.mainbackground {
  background-image: url("../img/goof.JPG");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  flex: 1;
}

/* Club Grid */
.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 Box */
.club {
  background-color: #000000aa;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.club:hover {
  transform: scale(1.03);
}

.club img {
  width: 100%;
  height: auto;
  display: block;
}

.club-text {
  text-align: center;
  padding: 12px;
  color: white;
  font-size: 14px;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
  .club-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .banner h1 {
    font-size: 24px;
  }

  .banner p {
    font-size: 14px;
  }
}

/* Print */
@media print {
  nav,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
/* Video Section */
.video-section {
  background-color: #1e1e1e;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.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 icon for mobile */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .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: fadeIn 0.4s ease;
  }
}

/* inspirational quotes js */
.quote-section {
  background-image: url("../img/got.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 1px 1px 5px black;
  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 {
  background-color: #282b28;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#quoteBtn {
  font-size: 16px;
  padding: 8px 16px;
}

#quoteText {
  font-size: 18px;
  font-style: italic;
  max-width: 700px;
  text-align: center;
  margin-top: 10px;
}
