/* ================================
   LAYOUT — HEADER
================================ */

.header {
  background: #b30000;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

.club-name {
  font-size: 20px;
  font-weight: 600;
}

/* ================================
   LAYOUT — MOBILE MENU
================================ */

.menu-btn {
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn span {
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #000;
  color: #fff;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #fff;
  border-bottom: 1px solid #333;
  font-size: 18px;
}

/* ================================
   LAYOUT — FOOTER
================================ */

.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-badge {
  width: 80px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  color: #b30000;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #222;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #aaa;
}
