body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

/* CONTAINER GLOBAL */
.container {
  max-width: 1000px;
  margin: auto;
}

/* HEADER TOP (logo + flag) */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 0; /* 🔥 spațiu sus și jos */
}

.logo-center img {
  height: 100px !important;
  filter: drop-shadow(0 0 3px white)
          drop-shadow(0 0 3px white);
}

.logo-center img {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  130% { transform: scale(1.3); }
}


/* LOGO STANGA */
.logo-left img {
  height: 80px;
}

/* LOGO MIJLOC */
.logo-center img {
  height: 60px; /* mai mic ca să arate echilibrat */
}

/* STEAG */
.flag {
  display: flex;
  width: 120px;
  height: 80px;
}

.flag div {
  flex: 1;
}

.flag .blue {
  background: #002B7F;
}

.flag .yellow {
  background: #FCD116;
}

.flag .red {
  background: #CE1126;
}

/* HEADER */
.topbar {
  background: #3aa0d8;
  color: white;
}

/* ===== BARA MENIU FULL WIDTH ===== */
.menu-bar {
  width: 100%;
  background: linear-gradient(90deg, #0ea5d3, #0b7db8);
}

/* MENU */
.menu {
  display: flex;
}

/* LINKURI MENIU */
.menu a {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: white;
  text-decoration: none;
  /* TEXT MAI MARE */
  font-size: 22px;
  font-weight: 600;

  /* BORDER */
  border-right: 1px solid rgba(255,255,255,0.4);

  /* pentru linia de jos */
  position: relative;
}

/* border stanga */
.menu a:first-child {
  border-left: 1px solid rgba(255,255,255,0.4);
}

/* HOVER */
.menu a:hover {
  background: #139ed6;
}

/* ACTIVE */
.menu .active {
  background: #139ed6;
  font-weight: bold;
}

/* LINIE ALBA JOS */
.menu .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;

  /* LINIE ROSIE */
  background: #e60023;
}

/* TITLE */
.title {
  text-align: center;
  padding: 30px;
}

.title h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  color: #333;
}


/* PRODUCTS */
.products {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.product {
  display: flex;
  background: white;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
}

.product img {
  width: 400px;
  margin-right: 20px;
  object-fit: cover;
}

.content h2 {
  margin-top: 0;
}

.content h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 10px 0;

  color: #222;
}

.content p {
  font-size: 16px;       /* puțin mai mare */
  line-height: 1.5;      /* 🔥 distanță între rânduri */
  margin-bottom: 10px;   /* spațiu jos */
  color: #333;
}

.buttons {
  margin-top: 10px;
}

.buttons a {
  display: inline-block;
  margin-right: 10px;

  /* MAI MARE */
  padding: 12px 18px;

  background: #0b7db8;
  color: white;
  text-decoration: none;

  font-size: 15px;
  font-weight: bold;

  border-radius: 4px;
}

.buttons a:hover {
  background: #139ed6;
}

.contact-info {
  margin-top: 25px;
  font-size: 22px;
  font-weight: bold;
  color: #e60023;

  display: flex;
  justify-content: center;
  gap: 30px; /* spațiu între Tel și Email */
}

/* linkuri roșii */
.contact-info a {
  color: #e60023;
  text-decoration: none;
}
/* hover */
.contact-info a:hover {
  text-decoration: underline;
}

.tags {
  max-width: 1000px;
  margin: auto;
  color: #444;
}

.footer {
  background: #0b7db8;
  color: white;
  margin-top: 40px;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-item {
  font-size: 14px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.product-details {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border: 1px solid #ddd;
}

.product-details h2 {
  font-size: 24px;
  margin-top: 30px;
  color: #0b7db8;
}

.contact-section h3 {
  color: #0b7db8 !important;
  font-size: 22px;
  font-weight: bold;
}

.product-details p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.product-details ul {
  margin: 10px 0 15px 20px;
}

.product-details li {
  margin-bottom: 5px;
}

.warning {
  background: #fff3cd;
  padding: 10px;
  border-left: 4px solid #e60023;
  margin-top: 15px;
}

.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.custom-table th {
  background: #0b7db8;
  color: white;
  padding: 12px;
  text-align: center;
}

.custom-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.custom-table tr:nth-child(even) {
  background: #f5f5f5;
}

.custom-table tr:hover {
  background: #eaf6fb;
}

.note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.contact-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  color: #0b7db8;
  margin-bottom: 15px;
}

.contact-section h3 {
  color: #777;
}

.contact-desc {
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-item {
  font-size: 18px;
  font-weight: bold;
  color: #e60023;
}

.contact-item a {
  color: #e60023;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-address {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.map-container {
  margin-top: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #0b7db8;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.download-btn:hover {
  background: #095e8c;
}

/* MOBILE */
@media (max-width: 700px) {

  .header-top {
    flex-direction: column;
    gap: 10px;
  }

  /* MENU PE UN SINGUR RAND */
  .menu {
    flex-wrap: nowrap;
  }

  .menu a {
    font-size: 14px;
    padding: 10px 5px;
  }

  /* PRODUCTS */
  .product {
    flex-direction: column;
  }

  .product img {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .contact-info {
    flex-direction: column; /* doar aici vertical */
    align-items: center;
    gap: 5px;
  }

  .contact-item {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .footer-content {
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
}
