/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}	 


     /* remove underline*/


a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }



body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Selector de limb\103 (dreapta sus) */
.language-switcher {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.language-switcher select {
  padding: 4px;
  font-size: 0.9em;
}

/* Header */
header {
  background-color: #003366;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  text-align: center;
  margin-bottom: 10px;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.nav-menu li {
  margin: 5px 15px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background-color: #e6f0ff;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

/* Cards */
.cards {
  padding: 40px 0;
  background-color: #fff;
}

.cards .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card {
  background-color: #f0f8ff;
  padding: 20px;
  flex: 1 1 calc(33.333% - 20px);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 10px;
  color: #003366;
}

/* Nout\103\21Bi */
.noutati {
  padding: 40px 0;
  background-color: #eef6ff;
}

.noutati h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
}

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

.noutati-gallery a {
  flex: 1 1 calc(30% - 20px);
  text-align: center;
  text-decoration: none;
  color: #003366;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.noutati-gallery a:hover {
  transform: scale(1.03);
}

.noutati-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.noutati-gallery p {
  padding: 10px;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Vizitatori (stânga jos) */
.visitor-counter {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  color: #003366;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9em;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .cards .container,
  .noutati-gallery {
    flex-direction: column;
  }

  .card,
  .noutati-gallery a {
    flex: 1 1 100%;
  }
}
