




.site-header {
  position: relative;
  width: 100%;
  background-color: white;
  text-align: center;
  padding: 20px 0;
  z-index: 10;
}

.logo {
  height: auto;
  width: auto;
  margin-top:-300px;
  max-height: 700px; /* logo vizibil, dar rezonabil */
  max-width: 100%;
  display: inline-block;
}

.slideshow {
  position: relative;
  margin-top: 180px; /* păstrat ca să nu se suprapună cu headerul */
  overflow: hidden;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.container.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px; /* mai mici decât 48px */
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;

  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}


.site-footer {
  background-color: #1f1f1f; /* gri foarte închis */
  padding: 40px 20px; /* mai mult padding pentru înălțime */
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  z-index: 1;
}

.footer-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #444;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.footer-button:hover {
  background-color: #666;
}

.footer-button.left {
  left: 400px;
}

.footer-button.right {
  right: 400px;
}




    /* Stil rapid pentru aliniere și spațiere */
  .description-section {
  padding: 40px;
  min-height: 100vh; /* important să ocupe cel puțin înălțimea unui ecran */
}


    .description {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      font-family: Arial, sans-serif;
      color: #222;
      line-height: 1.6;
    }

    .description h1 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .description h2 {
      font-size: 1.5rem;
      margin-top: 30px;
      margin-bottom: 10px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .description p, .description address {
      margin-bottom: 15px;
      white-space: pre-line; /* păstrează liniile noi în text */
    }

    .contact-info {
      margin-bottom: 30px;
    }


   .fullscreen-image {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.fullscreen-image img.goya-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

#scroll-down:hover {
  background: rgba(0, 0, 0, 0.7);
}



.contact-form {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  font-family: sans-serif;
}

.contact-form .intro-text {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.contact-form label {
  align-self: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  max-width: 70%;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 10px;
}

.contact-form button {
  padding: 8px 20px;
  font-size: 16px;
  cursor: pointer;
}

.mandatory-note {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-size: 12px;
}


.submit-button {
  padding: 12px 24px;
  border: 2px solid #0b77ec; /* Albastru */
  color: #0b77ec;
  background-color: transparent;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.submit-button:hover {
  background-color: #007BFF;
  color: white;
}


@media (max-width: 768px) {
  .description {
    padding: 20px;
  }

  .description h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }

  .description h2 {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
  }

  #form-container p {
    margin-left: 0;
    text-align: center;
    font-size: 15px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }

 .contact-form label {
    display: block;
    text-align: left !important;
    width: 100%;
    margin: 0 0 4px 0;
    padding: 0;
  }

  .contact-form input,
  .contact-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .fullscreen-image img.goya-main {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  /* Dacă <p> din mesajul "We look forward..." e centrat manual */
  #form-container p {
    text-align: left; /* păstrezi sau ajustezi după cum vrei */
    margin: 0 0 10px 0;
  }

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  width: 100%;
  flex-wrap: wrap; /* permite textului să treacă pe rânduri */
}

.checkbox-container input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-container label {
  flex: 1 1 0;
  display: block;
  text-align: left;
  word-break: break-word;
  max-width: calc(100% - 30px); /* protejează împotriva ieșirii din ecran */
}




  .mandatory-note {
    font-size: 12px;
    text-align: left;
  }

  .submit-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #222;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .map-container iframe {
    height: 300px;
  }

 .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-button {
    position: static;
    width: 80%;
    max-width: 250px;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    background-color: #444;
    color: white;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  .footer-button:hover {
    background-color: #666;
  }

  .footer-button.left,
  .footer-button.right {
    left: auto;
    right: auto;
    transform: none;
  }

  .footer-text {
    order: 3;
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
  }
}
