body {
  font-family: "Open Sans", sans-serif;
  color: #1e1e1e;
  background-color: white;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bodoni Moda", "Bodoni MT", serif;
  letter-spacing: 1px;
  font-weight: 600;
}

a {
  color: #a58b67;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #887151;
}

.navbar {
  background: rgba(0, 0, 0, 0.85);
}
.navbar .navbar-brand img {
  height: 50px;
}
.navbar .nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-family: "Bodoni Moda", "Bodoni MT", serif;
}
.navbar .nav-link:hover {
  color: #a58b67 !important;
}

.hero {
  margin-top: 76px;
  background-position: bottom;
  background-size: cover;
  position: relative;
}
.hero .overlayBox {
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.7);
  display: block;
  position: absolute;
}
.hero .container {
  padding: 25vh 0;
  z-index: 2;
  position: relative;
}
.hero .container .lead {
  padding: 0 10px;
  box-sizing: border-box;
}

.hero-section {
  height: 100vh;
  background: url("../img/HM-Logo.png") center/contain no-repeat, #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.hero-section h1 {
  font-size: 4rem;
  animation: fadeInDown 1.5s ease;
}
.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  animation: fadeInUp 1.5s ease;
}

section {
  padding: 80px 0;
}
section.light {
  background: #f9f9f9;
}
section.dark {
  background: #111;
  color: white;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.about p {
  line-height: 1.7;
}

.tenants .tenant-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.tenants .tenant-card:hover {
  transform: translateY(-5px);
}

.events .event {
  margin-bottom: 2rem;
  border-left: 4px solid #a58b67;
  padding-left: 1rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.contact-form input, .contact-form textarea {
  margin-bottom: 20px;
}
.contact-form select {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 6px;
  box-sizing: border-box;
}
.contact-form button {
  background: #a58b67;
  border: none;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-family: "Bodoni Moda", "Bodoni MT", serif;
}
.contact-form button:hover {
  background: #887151;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 0;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.card-body img {
  max-width: 100%;
  max-height: 60px;
  margin: 20px 0;
}
.card-body a, .card-body span {
  border-radius: 20px;
  border: 2px solid #a58b67;
  padding: 6px 18px;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 20px;
  display: inline-block;
  color: #a58b67;
}
.card-body a:hover, .card-body span:hover {
  background-color: #a58b67;
  color: white;
}

.map-box iframe {
  width: 100%;
  height: 500px;
}

.designModal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(85, 85, 85, 0.7);
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.designModal .modalInner {
  background-color: #ffffff;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 30px;
  box-sizing: border-box;
}
.designModal .modalInner .modalClose {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ee3131;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.designModal .modalInner h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 400;
}
.designModal .modalInner form {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.designModal .modalInner form select, .designModal .modalInner form input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #555555;
  margin: 4px 0 15px;
}
.designModal .modalInner form select:focus, .designModal .modalInner form input:focus {
  outline: none;
  border-color: #a58b67;
}
.designModal .modalInner form .select2-container {
  min-width: 100%;
  max-width: 100%;
  text-align: left;
  margin-top: 4px;
  margin-bottom: 15px;
}
.designModal .modalInner form .select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border-color: #555555 !important;
  padding: 5px 10px 10px !important;
}
.designModal .modalInner form .button {
  background-color: #a58b67;
  padding: 18px;
  color: #ffffff;
  font-size: 18px;
  border: none;
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
