/* Base styles */
.info-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  gap: 20px;
  
}

.info-section__details {
  flex: 1 1 50%;
  max-width: 50%;
  padding-right: 20px;
}

.info-section-div__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Bodoni Moda", serif;
}

.info-section__info div {
  margin-bottom: 20px;
}

.info-section__info strong {
  font-size: 3rem;
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-family: "Pinyon Script", serif;
}

.info-section__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #555;
}

.info-section__form {
  flex: 1 1 45%;
  max-width: 45%;
  background-color: #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.form__input, .form__textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f5f5f5;
  color: #333;
  transition: border-color 0.3s ease;
  font-family: "Bodoni Moda", serif;
}

.form__input:focus, .form__textarea:focus {
  border-color: #6a1f1f;
  outline: none;
}

.form__textarea {
  resize: none;
  height: 120px;
}

.form__button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #6a1f1f;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Bodoni Moda", serif;
}

.form__button:hover {
  background-color: #a23a3a;
}

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .info-section {
    padding: 40px;
    gap: 15px;
  }

  .info-section__details, .info-section__form {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 15px;
  }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    padding: 20px;
  }

  .info-section__details, .info-section__form {
    padding: 10px;
  }

  .info-section-div__text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .form__button {
    padding: 12px;
    font-size: 0.9rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
