:root {
  --primary-color: #808000;
  --secondary-color: #000000;
  --accent-color: #F5F5DC;

  --gold-accent: #DAA520;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.hero-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('trickle/assets/yo.jpg') center/cover no-repeat;
  color: white;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
    flex-direction: column;
    text-align: center;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}

.reveal-on-scroll.revealed {

  opacity: 1;
  transform: translateY(0);
}

.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.header-visible {
  transform: translateY(0);
  transition: transform 0.3s ease 0.2s;
}

.map-wrap {
  width: 100%;
  max-width: 700px;
  height: 0;
  padding-bottom: 40%;
  margin: 0 auto 2rem; /* center and give bottom spacing */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  position: relative;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-action {
  margin-top: 1rem;
  text-align: center;
}

.map-open-btn {
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #3b3b3b;
  background: white;
  font-weight: 600;
}

.house-call {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto; /* center below map */
  font-family: Arial, sans-serif;
  color: #333;
}

.house-call h2 {
  color: #556B2F;
  margin-bottom: 10px;
}

.house-call ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}

.house-call p {
  margin-bottom: 10px;
}