/* Common reset + fonts */
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@300;700&family=Roboto:wght@300;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("logo/background.jpg") center/cover no-repeat;
  color: #fff;
}

.container {
  width: 90%;
  margin: 0 auto;
}

header {
  padding: 15px 0;
}

header .logo img {
  width: 100px;
  border-radius: 5px;
  display: block;
}

.flex-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.left-content {
  flex: 1 1 45%;
  text-align: left;
  padding: 20px;
}

.left-content h2 {
  font-family: "Catamaran", sans-serif;
  font-size: 32px;
  margin: 10px 0;
  color: #fff;
}

.left-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #bc9d72;
}

.left-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact form */
.right-form {
  flex: 1 1 45%;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  font-family: "Catamaran", sans-serif;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #f1f1f1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bc9d72;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  outline: none;
  font-family: "Roboto", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ddd;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  background-color: #bc9d72;
  color: white;
  font-size: 16px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.submit-btn:hover {
  background-color: #a9875f;
}

/* Responsive */
@media (max-width: 768px) {
  .flex-wrapper {
    flex-direction: column;
    padding: 20px 0;
  }

  .left-content,
  .right-form {
    flex: 1 1 100%;
  }

  .right-form {
    width: 100%;
  }

  .left-content {
    text-align: left;
    padding: 0;
  }

  header .logo img {
    width: 60px;
  }
  .contact-form {
    padding: 15px;
  }
}
