* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html, body {
  height: 100%;
}

body {
  background:
    radial-gradient(circle at top, #1e293b 0%, #020617 50%),
    linear-gradient(to bottom, #020617 50%, #2C3E50 100%);
  color: #d1d5db;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* NAVBAR mare */
nav {
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-container img {
  height: 60px;
}

.logo-container span {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links-languages {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #c7d2fe;
  margin-left: 28px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-selector img {
  width: 24px;
  height: 16px;
  cursor: pointer;
  border-radius: 3px;
  transition: transform 0.2s;
}

.language-selector img:hover {
  transform: scale(1.2);
}

/* MAIN CONTENT */
main {
  padding: 140px 60px;
  text-align: center;
}

h1 {
  font-size: 60px;
  margin-bottom: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #f8fafc, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 19px;
  color: #d1d5db;
  max-width: 650px;
  margin: auto;
}

/* FOOTER – fix jos */
footer {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #2C3E50;
  color: #d1d5db;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
  color: #d1d5db;
  text-decoration: none;
}

footer a:hover {
  color: #3b82f6;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: #c7d2fe;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #3b3b3b;
  border-radius: 6px;
  background-color: #1e293b;
  color: #d1d5db;
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.contact-form button {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.3s;
}

.contact-form button:hover {
  opacity: 0.9;
}

.contact-info a {
  color: #94a3b8; /* gri deschis, elegant */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #3b82f6; /* albastru gradient navbar pentru hover */
}

