@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: system-ui, Arial, sans-serif;
  box-sizing: border-box;
}

.background-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(3px);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.content h1 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.address {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.maps-btn {
  display: inline-block;
  padding: 0.8em 2em;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 0.7em;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.maps-btn:hover, .maps-btn:focus {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.names {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 2rem;
  }
  .content {
    padding: 1rem;
  }
  .maps-btn {
    font-size: 0.95rem;
    padding: 0.7em 1.2em;
  }
  .names {
    font-size: 1.3rem;
  }
} 