.almeria-background {
  background-image:
    url(../images/solo_ristorante.jpg);
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--off-white);
}

.self-aling-center {
  align-content: center;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 600px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 300px;
  }
}

.maps-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--main-dark-navy);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 166, 180, 0.4);
  border: none;
}

.maps-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 166, 180, 0.5);
  color: white;
}

.maps-button:active {
  transform: translateY(0);
}

.maps-button i {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.maps-button-icon {
  position: relative;
  top: -2px;
}

@media (max-width: 768px) {
  .maps-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.small-location-icon {
  color: var(--main-dark-navy);
  width: 3.85rem;  /* 20px */
  height: 3.85rem; /* 20px */
  flex-shrink: 0;

  path {
    stroke: currentColor;
    stroke-width: 8px;
    stroke-linejoin: round;
  }
}

.location-address-padding {
  padding-left: 5rem;
}

@media (max-width: 1700px) {
  .location-address-padding {
    padding-left: 0;
  }
}

#location-text h1,
#location-text p,
#location-text strong {
  color: var(--main-dark-navy);
}
