/* === FUNDAL GENERAL === */
body {
  background-image: url("../images/logo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #d1ecf1; /* pastel albastru deschis pentru textul general */
  line-height: 1.6;
  position: relative;
}

/* === HEADER === */
header img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* === NAVIGATION === */
nav {
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 15px 0;
}

nav a {
  color: gold;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  margin: 0 15px;
  padding: 8px 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

nav a:hover {
  color: white;
  text-decoration: underline;
}

/* === STRUCTURA PAGINII === */
main, section {
  padding: 40px;
  background-color: transparent;
  margin: 20px;
  border-radius: 8px;
}

h1, h2, h3 {
  color: #66ccff; /* azur deschis pentru titluri */
  margin-top: 20px;
  font-size: 2em;
  text-shadow: 1px 1px 3px #000;
}

p, li {
  font-size: 1.2em;
  color: #d1ecf1; /* pastel pentru conținut */
}

ul {
  padding-left: 25px;
}

/* === GALERIE === */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding: 30px;
}

.gallery img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* === LINKURI GENERALE === */
a {
  color: gold;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: underline;
}

/* === FOOTER === */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 1em;
  color: #ccc;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid #444;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .gallery img {
    max-width: 90%;
  }
}
