/* 🌸 Goodbye Kitty Cafe - Locations Stylesheet 🌸 */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

/* Global */
body {
  background: linear-gradient(to bottom, hsl(330, 100%, 95%), hsl(330, 100%, 99%));
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Navbar */
.custom-nav {
  background: linear-gradient(90deg, #ffb6d5, #ffe1f0);
  border-bottom: 3px solid #ff69b4;
}
.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}
.brand-title {
  color: #e6007e;
  font-weight: bold;
}
.nav-links li a {
  color: #e6007e;
  font-weight: bold;
  transition: 0.3s;
}
.nav-links li a:hover {
  color: #ff69b4;
  transform: scale(1.1);
}
.nav-button {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: white;
  border: 2px solid #e6007e;
  transition: 0.3s;
}
.nav-button:hover {
  background: #e6007e;
  color: white;
}

/* Content */
.container {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ffcdea;
  text-align: center;
}
h1 {
  color: #e6007e;
  margin-bottom: 1rem;
}
p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.location {
  background: #fff7fb;
  border-left: 6px solid #e6007e;
  padding: 1.2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  text-align: left;
}
.location h2 {
  color: #e6007e;
  margin-top: 0;
}
.location p {
  margin: 0.3rem 0;
}

/* Map Section */
.map-container {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(255,105,180,0.3);
}
.map-container h2 {
  color: #e6007e;
  text-align: center;
  margin-bottom: 1rem;
}
.map-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #e6007e;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  color: #e6007e;
  font-weight: bold;
  background: #ffe1f0;
  border-top: 3px solid #ff69b4;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .map-container iframe {
    height: 250px;
  }
}
.map-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.map-container h2 {
  color: #e6007e;
  margin-bottom: 1rem;
}

.map-container p.map-note {
  font-size: 0.9rem;
  color: #e6007e;
  margin-top: 0.5rem;
}

.map-container iframe {
  border-radius: 18px;
}