/* Global Variables */
:root {
  --primary-color: #010712;
  --secondary-color: #818386;
  --button-color: #3B3636;
  --h1-color: #3F444C;
}

/* Contact Container */
#contact-cont {
  display: flex;
  align-self: center;
  justify-self: center;
  align-items: center;
  margin-bottom: 2vh;
  padding-top: 50px;
  max-width: 100vw;
}

/* Responsive adjustments */
@media only screen and (max-width: 1000px) {
  #contact-cont {
    flex-direction: column;
    padding-top: 0;
  }
}

/* Left Contact and Right Contact Sections */
.left-contact, .right-contact {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  
}

/* Additional adjustment for the right contact section */
.right-contact {
  flex-grow: 1;
  align-self: start;
}

/* Styling for contact image */
.left-contact img {
  max-width: 1000px;
  box-shadow: 2px 2px 6px rgba(183, 137, 112, 0.8);
}

/* Styling for contact form */
.right-contact form{
  max-width: 95%;
  margin: 10px;
}



/* Further responsiveness adjustment */
@media (max-width: 1000px) {
  .left-contact, .right-contact {
    min-width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* Contact Title */
.contact-title {
  margin: 5rem 0;
  font-size: 1rem;
  font-weight: 100;
  color: rgba(94, 94, 94, 0.9);
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  animation: fadeInAnimation ease 1s; /* Faster fade-in animation */
  animation-fill-mode: forwards;
}

@media only screen and (max-width: 1000px) {
  .contact-title {
    margin: 1rem 0 3rem 0;
  }
}

/* Contact Form */
#contact-form {
  max-width: 96%;
}

/* Styling for labels and descriptions */
label, .description {
  font-family: 'Playfair Display', serif;
  font-weight: 200;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 0.625rem;
}

/* Form Styling */
form {
  margin-top: 2rem;
  min-height: 100%;
  align-items: start;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  max-width: 100%;


}

/* Input, textarea, and label styling */
input, textarea, label {
  width: 100%;
  display: block;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Placeholder color */
input::placeholder, textarea::placeholder {
  color: var(--primary-color);
}

/* Input and textarea styling */
input, textarea {
  color: var(--primary-color);
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--secondary-color);
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  outline: none;
  transition: opacity 0.3s ease;
}

/* Disable vertical resizing for textarea */
textarea {
  resize: vertical;
}

/* Hover effect */
input:hover, textarea:hover, button:hover {
  opacity: 0.8;
}

::placeholder {
  font-family: 'Playfair Display', serif;
  color: rgba(94, 94, 94, 0.4);
  font-size: 0.7rem;
  opacity: 0.7;
}
.contact-butt {
width: 110px;
height: 45px;
background-color: rgba(183, 137, 112, 0.8);
border-radius: 1px;
text-align: center;
color: rgba(252, 250, 235, 1);
font-size: 15px;
border: 0;
text-decoration: none;
cursor: pointer;
align-self: end;

}


