/* Font și reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #dbe9f4;
  border-bottom: 1px solid #ccc;
  color: #003366;
}

.slogan {
  font-style: italic;
  margin-top: 10px;
}

/* Navigație */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  background-color: #3a5f7d;
}

nav ul li a {
  display: block;
  padding: 15px 22px 15px 24px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #2f4f6b;
}

/* Secțiuni generale */
section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  text-align: center;
  color: #000000;
}

/* Secțiunea Servicii */
section.servicii {
  background-color: rgba(255, 255, 255, 0.85); /* alb semi-transparent */
  color: #000000;
  border-radius: 8px;
  padding: 60px 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

/* Footer */ooter {
  text-align: center;
  padding: 20px;
  background-color: #dee2e6;
  font-size: 0.9em;
  color: #555;
  border-top: 1px solid #ccc;
}

/* Versiune mobilă */
@media (max-width: 480px) {
  nav ul {
    gap: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }

  nav ul li a {
    font-size: 0.9em;
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 40px 15px;
    font-size: 0.95em;
  }
}

/* Stil reutilizabil pentru secțiuni pastelate */
.pastel-box {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 1rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Variante de fundal pastel */
.pastel-box.bg1 { background-color: #7aaae6; }
.pastel-box.bg2 { background-color: #8bb8f9; }
.pastel-box.bg3 { background-color: #a3c9f9; }
.pastel-box.bg4 { background-color: #b3d4fc; }
.pastel-box.bg5 { background-color: #99c2f2; }

/* Fundal discret pentru pagina Servicii */
.servicii-page {
  position: relative;
  background-color: #1a2b3c; /* fundal albastru închis */
  color: white;
  overflow: hidden;
  min-height: 100vh;
}

.background-overlay {
  background-image: url('/ADM_ENGINEERING/FIBER.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.servicii-page > * {
  position: relative;
  z-index: 1;
}