/* Stiluri pentru secțiunea de recenzii */

.review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.review-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(30, 0, 164, 0.493);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.03);
}

.stars {
  color: gold;
  font-size: 1.2em;
}

.comment {
  margin: 15px 0;
  font-style: italic;
}

.author {
  font-weight: bold;
  color: #555;
}

.review-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 600px;
}

.review-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 20px;
}

.reply-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
}

.reply-item {
  font-size: 0.95em;
  color: #333;
}

.reply-form {
  margin-top: 10px;
}

.reply-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#mobile-nav {
  display: none !important;
  background-color: #003366;
  padding: 10px 0;
  width: 100%;
  z-index: 999;
  position: relative;
}

#mobile-nav.active {
  display: block !important;
}

#mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: menu;
}

#mobile-nav li {
  margin: 10px 0;
}

#mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: right;
  padding: 10px 20px;
  background-color: #003366;
}

.menu-btn {
  background: #003366(4, 4, 65);
  border: none;
  font-size: 1.5em;
  color: white;
  cursor: pointer;
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 60px; /* sub header */
  right: 20px; /* spre dreapta */
  background-color: #0078D7;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  width: 250px;
  transition: all 0.3s ease;
}

#mobile-nav.active {
  display: block;
}

#mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobile-nav li {
  margin: 10px 0;
}

#mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

#mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#login-section {
  display: none;
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}