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

/* Global */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #ecf0f1;
}

/* Navbar */
.navbar {
  background-color: #2c3e50;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

.navbar .left a {
  font-weight: bold;
  display: flex;
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Meniu Dreapta */
.right {
  display: flex;
  align-items: center;
}

/* Formulare */
.form-container {
  max-width: 400px;
  margin: 60px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #2980b9;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #1c5980;
}

.mesaj {
  text-align: center;
  color: red;
  margin-bottom: 15px;
}

.form-footer {
  text-align: center;
  margin-top: 15px;
}

.form-footer a {
  color: #2980b9;
  text-decoration: none;
}

/* Harta */
#map-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 30px auto;
}

#map-container svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .right {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }

  .right.show {
    display: flex;
  }

  .right a,
  .right span {
    display: block;
    margin: 10px 15px;
  }

  .form-container {
    margin: 30px 15px;
    padding: 20px;
  }

  footer {
    font-size: 14px;
  }
}

.menu-btn {
  background-color: #2980b9;
  color: white;
  padding: 8px 12px;
  margin: 4px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  transition: background 0.3s;
}

.menu-btn:hover {
  background-color: #1c5980;
}

.welcome-text {
  color: white;
  font-weight: bold;
  margin: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}