:root {
  --light-background: #f2f2f2;
  --light-text-color: #121212;
  --dark-background: #121212;
  --dark-text-color: #f2f2f2;
  --accent-color: #d4af37;
  --primary-color: #f2f2f2;
  --secondary-color: #121212;
  --hamburger-link-color: #272114;
  --background-color-hover: rgba(212, 175, 55, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--dark-background);
  color: var(--light-text-color);
}
body.dark-theme {
  background-color: var(--light-background);
  color: var(--dark-text-color);
}

/* HERO SECTION */

.contact-hero {
  background: #0c0c0c;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
}
body.dark-theme .contact-hero {
  background: #f2f2f2;
  color: #121212;
}
.hero-tag {
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}

.contact-hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  margin-bottom: 15px;
}

.hero-desc {
  color: #bbb;
  font-size: 16px;
}

/* MAIN CONTACT SECTION */

.contact-section {
  padding: 80px 8%;
}
.contact-container::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;

  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  /* z-index: -1; */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.contact-container::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  bottom: 0;
  left: 0;
  /* z-index: -1; */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 60px; */
  padding: 20px;
}
.info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.info-box svg {
  stroke: #d4af37;
}
/* LEFT SIDE */
.contact-info {
  padding-right: 40px;
}
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #f5f5f5;
  margin-bottom: 30px;
}
body.dark-theme .contact-info h2 {
  color: #121212;
}
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #f3efe4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.info-item h4 {
  margin-bottom: 5px;
}
.info-text p,
h4 {
  color: #bbb;
  font-size: 14px;
}

/* WHATSAPP BUTTON */

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

/* MAP */

.map {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* FORM */

.contact-form h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  color: #f2f2f2;
  font-size: 14px;
}
body.dark-theme .contact-form label {
  color: #121212;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */

.send-btn {
  margin-top: 20px;
  background: #d4af37;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h2 {
    font-size: 32px;
  }
  .contact-info h2 {
    text-align: center;
  }
  .contact-container::after {
    display: none;
  }
  .contact-info {
    padding-right: 10px;
  }
  .contact-container::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;

    background: radial-gradient(
      circle,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 70%
    );
    /* z-index: -1; */

    top: 0;
    right: 0;
  }
}
