/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #202020;
  color: #ffffff;
  margin: 0;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #2a2a2a;
}

.nav__logo img {
  max-width: 150px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.link a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.link a:hover {
  color: #f1f954;
}

.link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #f1f954;
  transition: width 0.3s ease;
}

.link a:hover::after {
  width: 100%;
}

/* Gallery Section */
.gallery {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.gallery h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.gallery__section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.gallery__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery__image:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Footer */
.footer__content {
  text-align: center;
  padding: 2rem;
  background-color: #2a2a2a;
}

.social__links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social__links a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social__links a:hover {
  color: #f1f954;
  transform: scale(1.2);
}
