body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  scroll-behavior: smooth;
}

header {
  text-align: center;
  padding: 20px 0;
  background-color: #444;
  color: #fff;
}

.logo {
  margin-bottom: 10px;
}

.logo-img {
  max-height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

section {
  max-width: 960px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #666;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  max-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #444;
  color: #fff;
}

h1, h2, h3, .logo {
  font-family: 'Montserrat', sans-serif;
}

/* Stil pentru butoane filtrare */
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}
.filter-buttons button {
  background-color: #666;
  color: #fff;
  border: none;
  padding: 10px 22px;
  margin: 6px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-buttons button:hover,
.filter-buttons button.active {
  background-color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Asigurăm spațiere între galerii */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery a {
  text-decoration: none;
}

.gallery img {
  width: 100%;
  max-width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}