
.location-section {
  position: relative;
  background: url('../images/main.jpg') center/cover no-repeat;
  padding: 4rem 2rem;
  margin: 0;
  min-height: 100vh;
  color: white;
  text-align: center;
  overflow: hidden;
  display: block;
  align-items: center;
  justify-content: center;
}

/* Overlay mask */
.location-section::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Make sure the content is above overlay */
.location-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
}


.location-content h2 {
  font-size: clamp(1.25rem, 4vw, 2rem);
  margin-bottom: 3.5rem;
  line-height: 1.4;
  padding: 0;
  color: #ffffff;
  font-weight: 700;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.map-container img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.location-btn {
  background-color: #cca000;
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(204, 160, 0, 0.3);
  margin-top: 1rem;
}

.location-btn:hover {
  background-color: #001d3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 29, 61, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .location-section {
    padding: 3rem 1.5rem;
    min-height: 45vh;
  }

  .location-content {
    padding: 1.5rem 1rem;
  }

  .location-content h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }

  .map-container {
    gap: 2rem;
    margin-top: 1cm;
  }

  .map-container img {
    max-width: 160px;
  }

  .location-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 2.5rem 1rem;
    min-height: 60vh;
  }

  .location-content {
    padding: 1.5rem 0.75rem;
  }

  .location-content h2 {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .map-container {
    gap: 1.75rem;
    margin-top: 0.8cm;
  }

  .map-container img {
    max-width: 140px;
    border: 2px solid white;
  }

  .location-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    width: auto;
    min-width: 200px;
  }
}
