/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
}

body {
  background: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: #b8860b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- MAIN LAYOUT ---------- */
main {
  flex: 1;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  width: 100%;
  max-width: 800px;
  background: #fafafa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b8860b; /* gold tone */
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #444;
}

/* ---------- MAP ---------- */
.map-container {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

/* ---------- GET DIRECTIONS BUTTON ---------- */
.direction-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #b8860b;
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.direction-btn:hover {
  background: #a4750a;
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  main {
    padding: 1.5rem;
  }

  .contact-section {
    padding: 1.5rem;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }

  .contact-section p {
    font-size: 1rem;
  }

  .map-container iframe {
    height: 250px;
  }

  .direction-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1rem;
  }

  .contact-section h2 {
    font-size: 1.4rem;
  }

  .contact-section p {
    font-size: 0.95rem;
  }

  .map-container iframe {
    height: 200px;
  }

  .direction-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
  }
}