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

body, html {
  height: 100%;
  /* font-family: 'Libre Baskerville', serif; */
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  padding-top: 100px;
  padding-bottom: 2rem;
  background: linear-gradient(135deg, #f6ebe2 0%, #ebe6e0 50%, #e8e3d3 100%);
  overflow: hidden;
}

/* Decorative Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(45deg, rgba(98, 112, 69, 0.1) 0%, rgba(87, 73, 55, 0.05) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Floating Shapes */
.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: #627045;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: #dfb59b;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: #dbb5b1;
  top: 73%;
  left: 10%;
  animation-delay: 4s;
}

.shape-4 {
  width: 50px;
  height: 50px;
  background: #c4c4b5; /* soft neutral */
  top: 35%;
  left: 25%;
  animation-delay: 1s;
}

.shape-5 {
  width: 90px;
  height: 90px;
  background: #b8c6aa; /* muted green */
  top: 10%;
  right: 30%;
  animation-delay: 3s;
}


@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Logo */
.hero-logo {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: 50%;
  margin: 3rem auto 0rem;
  display: block;
}

/* Title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #473927;
  margin-bottom: -0.5rem;
  margin-top: -0.5rem;
}

/* Tagline */
.hero-tagline {
  font-family: 'Montserrat', sans-serif; /* Playfair Display Montserrat */
  font-size: 1.25rem; /* smaller than the title, but readable */
  color: #5a4432; /* slightly lighter than title for subtle contrast */
  margin-top: 0.5rem; /* some spacing below the title */
  margin-bottom: 1.5rem; /* space before hero buttons/section */
  font-weight: 400; /* medium weight for readability without being too bold */
  line-height: 1.4; /* comfortable spacing for readability */
  text-align: center; /* center under the hero title */
  /* letter-spacing: 2px; */
  /* font-style: italic; */
}

/* Location */
.hero-location {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  /* #627045 */
  color: #414d27;
  margin-bottom: 3rem;
  letter-spacing: 0.20rem;
  font-weight: 100;
  margin-top: 2rem;
}

.location-icon {
  margin-right: 0.3rem;
}

/* Stats Section */
.stats-section {
  max-width: 550px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.788);
  padding: 1rem 0rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(87, 73, 55, 0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  top: 3rem;
  right: 3rem;
  margin-bottom: 1rem;
  margin-top: 1.2rem;
}

.stat {
  flex: 1 1 150px;
  text-align: center;
  margin: 0.5rem 0;
}

.stat-number {
  position: relative; /* allow absolute children to position inside */
  font-size: 2.3rem;
  font-weight: 700;
  color: #627045;
  font-family: 'Georgia', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem; /* consistent height for animation */
  margin-bottom: -0.5rem;
  overflow: hidden;
  transition: opacity 0.4s ease;
  visibility: hidden;
}


.stat-label {
  margin-top: 0rem;
  font-size: 0.9rem;
  color: #8c8c82;
  font-family: 'Georgia', serif;
}

.number-reel {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.number-digit {
  display: block;
  height: 1.2em;
  line-height: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-section {
    width: 90%;
    padding: 1rem 0.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stat {
    min-width: 120px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {

  /* Smaller hero logo */
  .hero-logo {
    width: 248px;
    height: 248px;
    margin-top: 0.6rem;
    margin-bottom: 0.5rem;
  }

  /* Slightly smaller title */
  .hero-title {
    font-size: 3rem;
    margin-top: 0.5rem;
    margin-bottom: 1.6rem;
    line-height: 1.1; /* tighter, elegant spacing */
  }

  /* Tagline spacing + size */
  .hero-tagline {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  /* Location text */
  .hero-location {
    font-size: 0.9rem;
    margin-top: 1.2rem;
    margin-bottom: 2rem;
  }

  /* Reduce floating shapes so they don’t overwhelm mobile */
  .shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
    transform: scale(0.6);
    opacity: 0.08;
  }

  .hero {
    padding-top: 134px;
    min-height: calc(100vh - 60px); /* ensures hero stays visible */
  }

  .hero-content {
    padding-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  /* Keep stats horizontal */
  .stats-section {
    flex-direction: row;        /* stay horizontal */
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;

    width: 95%;
    padding: 0.6rem 0.4rem;
    transform: scale(0.9);      /* shrink slightly */
    margin-top: 1rem;
  }

  /* Make each stat smaller */
  .stat {
    flex: 1;
    min-width: auto;
    margin: 0;
  }

  .stat-number {
    font-size: 1.45rem;
    height: 1.8rem;
    line-height: 1.15;
    margin-bottom: -0.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
    margin-top: 0;
    margin-bottom: 0rem;
    line-height: 1.2;
  }
}




