@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;700&family=Bree+Serif&display=swap');

/* General Layout */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding-top: 70px;
  background-color: #f4f4f4;
  color: #333;
}

/* Navbar Top Border */
.navbar {
  border-top: 1px solid #bbb;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact Form */
.contact-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form label {
  font-weight: bold;
  color: #555;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.2);
}
.send-button {
  background-color: #f1c40f;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.send-button:hover {
  background-color: #d4ac0d;
}

/* Map Embed */
.map-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Floating Buttons */
.phone-float, .whatsapp-float {
  position: fixed;
  right: 20px;
  z-index: 1050;
  background-color: transparent;
  transition: transform 0.3s ease;
}
.phone-float {
  bottom: 90px;
}
.whatsapp-float {
  bottom: 20px;
}
.phone-float:hover, .whatsapp-float:hover {
  transform: translateY(-5px);
}
.phone-float img, .whatsapp-float img {
  width: 60px;
  height: 60px;
}

/* Footer */
.bg-container-bottom {
  background-color: #d2b48c;
  padding-top: 50px;
  padding-bottom: 30px;
  color: black;
}
.bg-container-bottom .logo-image {
  max-width: 120px;
  display: block;
  margin: 0 auto 15px;
}
.bg-container-bottom h5 {
  font-weight: bold;
}
.bg-container-bottom i {
  color: #5d4037;
  margin-right: 8px;
}
.bg-container-bottom hr {
  border-color: black;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hero-image {
    height: 300px;
  }
  .phone-float img,
  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
  .bg-container-bottom {
    text-align: center;
  }
}
