    
html, body {
font-family: 'Segoe UI', sans-serif;
      background-color: #f0f7fc;
  
}

.page-container {
  width: 99%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Eliminăm spații implicite */
body, html, header, footer {
  margin: 0;
  padding: 0;
}

    /* HEADER */
    header {
      background: linear-gradient(to right, #0077b6, #00b4d8);
      color: white;
      padding: 40px 20px; /* Mărirea distanței între elemente */
      text-align: center;
margin: 0; /* eliminăm spațiu implicit */

    }


    header h1 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    header p {
      font-weight: bold;
      margin-top: 10px;
      font-size: 1.1rem;
    }

    /* MENIU LATERAL - STILIZARE */
    .main-content {
      flex: 1;
      padding: 30px;
    }

    .text-indentat {
      text-indent: 30px;
    }

.flex-layout {
  display: flex;
 
 flex: 1;
}

/* MENIU DESKTOP – lat și vizibil în stânga */
.sidebar {
  background: linear-gradient(to right, #0077b6, #00b4d8);
  padding: 30px 20px;
  border-right: 2px solid #bde0fe;
  white-space: nowrap;
  width: 280px; /* lățime mai mare */
  min-height: 100vh;
 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
margin-top: 1px;
}

.sidebar a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}


    .sidebar a i {
      margin-right: 15px;
      font-size: 1.5rem; /* Mărirea pictogramelor */
    }

    .sidebar a:hover {
      background-color: #00b4d8;
      color: #03045e;
      border-color: #d90429; /* Border roșu la hover */
    }

    .sidebar a.active {
      border-color: #d90429; /* Border roșu pentru opțiunea activă */
      background-color: #00b4d8; /* Efect de hover pentru elementul activ */
    }

    /* GALERIE FOTO */
    .galerie-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .text-indentat {
      text-align: justify;
      text-indent: 1cm;
    }

    h3 {
      color: #0077b6;
    }

 h1,h2 {
      color: #0077b6;
    }


  footer {
      background-color: #0077b6;
      color: white;
      text-align: center;
      padding: 20px 0;
      margin-top: 1px;
    }

.wrapper {
  max-width: 90%;
  margin: 0 auto;
  background-color: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  background-image: linear-gradient(135deg, #e0f3ff 0.5px, transparent 0.5px), 
                    linear-gradient(225deg, #e0f3ff 0.5px, transparent 0.5px);
  background-size: 10px 10px;
  background-repeat: repeat;
}


.card-hover {
  transition: all 0.3s ease-in-out;
  color: #003366;
}

.card-blue-1 {
  background-color: #e6f2ff; /* Albastru foarte deschis */
}

.card-blue-2 {
  background-color: #d0e7ff; /* Albastru deschis diferit */
}

.card-hover:hover {
  transform: translateY(-5px);
  border: 1px solid #3399ff;
  box-shadow: 0 6px 20px rgba(51, 153, 255, 0.3);
}


/* RESPONSIVE: Meniu vertical pe toată lățimea sus */
@media (max-width: 768px) {
  .flex-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #bde0fe;
    min-height: auto;
  }

  .sidebar a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
  }

  .main-content {
    padding: 0px;
  }
}
