@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #202020;
  --secondary-color: #f1f954;
  --secondary-color-dark: #d79447;
  --text-light: #d1d5db;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-color);
  color: var(--white);
}

nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  max-width: 120px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.link a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.link a:hover {
  color: var(--secondary-color);
}

.link a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.link a:hover::after {
  width: 100%;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #2a2a2a;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.membership-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.image-container {
  overflow: hidden;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.image-container:hover img {
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #2a2a2a;
}

footer p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-media a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-media a:hover {
  color: var(--secondary-color);
}
