@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background-image: url('https://images.pexels.com/photos/268953/pexels-photo-268953.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.content {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  animation: fadeIn 1.5s ease;
}

header {
  text-align: center; /* ✅ CORECTAT aici! */
}

header h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #aadffd;
  text-align: center;
}

.description p {
  font-size: 1.2em;
  line-height: 1.6em;
  text-align: justify;
}

.video {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.examples h2 {
  color: #ffd6a5;
  font-size: 1.5em;
}

.examples ul {
  padding-left: 20px;
}

.examples li {
  margin: 10px 0;
  font-size: 1.1em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.back-link {
  display: inline-block;
  font-size: 1.1rem;
  color: #ffcc70;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.back-link:hover {
  border-color: #ffcc70;
}

.back-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
