/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #110e0e;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-top: 20px;
}

/* Button Container Styling */
.button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Contact Section Styling */
.contact-section {
  background-color: #c04141;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Deeper shadow for luxury feel */
  max-width: 600px;
  width: 100%;
  margin-top: 100px;
}

/* Contact Header */
.contact-container h2 {
  font-size: 2.5em; /* Larger font size for a more luxurious title */
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Contact Text */
.contact-container p {
  font-size: 1.2em;
  color: #7f8c8d;
  margin-bottom: 25px;
  text-align: center;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Increased gap for better spacing */
}

/* Input and Textarea Styling */
input, textarea {
  padding: 20px;
  font-size: 1.2em;
  border: 2px solid #f1c40f; /* Gold border for luxury effect */
  border-radius: 10px;
  width: 100%;
  background-color: #f7f7f7; /* Light gray background */
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: all 0.3s ease;
}

/* Focus States */
input:focus, textarea:focus {
  border-color: #f39c12; /* Gold focus effect */
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.5); /* Glow effect */
  outline: none;
}

/* Textarea Resize */
textarea {
  resize: none;
  height: 150px; /* Fixed height for textarea */
}

/* Submit Button Styling */
.submit-btn {
  padding: 20px;
  font-size: 1.4em;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  margin-top: 20px; /* Space between textboxes and button */
}

.submit-btn:hover {
  background-color: #2980b9;
  transform: scale(1.05); /* Slight enlargement on hover */
}

/* Custom Button Styling */
.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #ff994f, #fa6d86);
  cursor: pointer;
}
