/* ============================================
   HOMEPAGE SECTION SPECIFIC STYLES
   Extends shared/sections.css for homepage
   ============================================ */

/* Homepage sections */
.home-background-wrapper.has-hero .section {
  min-height: 100vh;
  padding-top: var(--navbar-height);
  overflow-x: hidden;
}

.home-background-wrapper.has-hero .section:first-child {
  padding-top: 0;
}

/* Homepage section headers */
.home-background-wrapper.has-hero .section-header {
  text-align: center;
}

.home-background-wrapper.has-hero .section-title {
  text-align: center;
}

.home-background-wrapper.has-hero .section-subtitle {
  text-align: left;
}

/* Contact section full-width on homepage */
.home-background-wrapper.has-hero .contact-section-full {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.home-background-wrapper.has-hero .contact-section-full .container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================
   MAP OVERLAY STYLES
   Clickable overlay for static map
   ============================================ */

.map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.map-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.map-overlay-text {
  opacity: 0;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.map-overlay:hover .map-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.map-overlay-text i {
  font-size: 1.1rem;
}
