.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  background-color: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    background-color: rgba(0,0,0,0.6);
    padding: 1em;
}

    .hero-text h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        line-height: 1.2;
        color: #ffffff;
        word-break: break-word;
        letter-spacing: 3px;
        padding: 20px 40px;
    }

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.btn-primary {
    background-color: #8ba722;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #7d961f;
}


.scroll-arrow {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.85;
    transition: opacity 0.3s;
    z-index: 1;
}

.scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 64px 0;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size:1.25em;
  padding:16px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.embedded-map {
  flex: 1;
  min-width: 300px;
}

.embedded-map iframe {
  width: 100%;
  max-width: 100%;
  height: 350px; 
  border: 0;
  display: block;
}

.info {
  padding: 64px 0;
  text-align: center;
}

.info h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-content: center;
  justify-items: center; 
  padding-inline: 24px;
}

.info-item {
    background-color: #f7f5bb;
    max-width: 320px;
    width: 100%;
    padding: 16px;
    padding-bottom: 5em;
}

.info-item img {
  width: 100%;
  border-radius: 8px;
}

.info-item h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.info-item p {
  margin-top: 4px;
  color: #000;
  font-weight: bold;
}

.info-item.special_info,
.info-item.special_info * {
  color: #ff0000 !important;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: 12px 20px;
    }
}
