/* src/styles/components/contact.css */

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form-wrapper {
  background-color: var(--clr-dark);
  padding: 2rem;
  border-radius: 8px;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header .ff-sans-cond {
  text-align: left;
}

.contact-header h1 {
  margin: 0.5rem 0;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #464545;
  font-family: var(--ff-sans-normal);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #d4c4b0;
  background-color: #eeeeee;
  border-radius: 6px;
  font-family: var(--ff-sans-normal);
  color: #333333;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c49a6c;
  background-color: #f5f5f5;
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999999;
}

.contact-form .description-text {
  font-size: 0.875rem;
  color: var(--clr-light-gray);
  margin-top: 0.5rem;
}

.attachment-box {
  border: 2px dashed #d4c4b0;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  position: relative;
  background-color: #f9f7f4;
  transition: all 0.3s ease;
}

.attachment-box:hover {
  border-color: #c49a6c;
  background-color: #f5f3f0;
}

.attachment-box input[type='file'] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.attachment-box span {
  color: #a67c52;
  font-weight: 500;
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  background-color: #3c2414;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--ff-sans-cond);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-form .btn:hover {
  background-color: #a67c52;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 154, 108, 0.3);
}

.other-contacts {
  padding: 2rem;
  background-color: var(--clr-dark);
  border-radius: 8px;
}

.other-contacts h2 {
  margin-bottom: 1.5rem;
}

.contact-info-sidebar {
  margin-bottom: 1.5rem;
}

.contact-info-sidebar h3 {
  color: #c49a6c;
  margin-bottom: 0.5rem;
}

.contact-info-sidebar a,
.contact-info-sidebar p {
  color: var(--clr-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

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