/* ===== Base / Safety ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, #e0282f, #0e0e0e 70%);
  color: #f2f2f2;
}

/* ===== Layout ===== */
.cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  text-align: center;
}

/* ===== Header ===== */
.header {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== Hero ===== */
.hero {
  max-width: 760px;
  width: 100%;
  margin: 2rem auto;
}

.logo {
  width: 100%;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.6));
}

/* ===== Divider Glow ===== */
.divider-glow {
  width: 60%;
  height: 2px;
  margin: 1rem auto 2rem;
  background: linear-gradient(90deg, transparent, #e0282f, transparent);
  box-shadow: 0 0 18px #e0282f;
}

/* ===== Content ===== */
.content {
  flex: 1;
  max-width: 760px;
  width: 100%;
}

/* ===== Cards ===== */
.spots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.spot-card {
  background: rgba(0,0,0,.55);
  border-radius: 18px;
  padding: 1.25rem;
  backdrop-filter: blur(6px);
}

.spot-card.drinks { border-top: 4px solid #e0282f; }
.spot-card.eats { border-top: 4px solid #73000a; }

.spot-card h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .12em;
}

/* ===== Buttons ===== */
.actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: .7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(135deg, #e0282f, #73000a);
  color: #fff;
}

.btn.secondary {
  border: 2px solid #f5f1ec;
  color: #f5f1ec;
}

/* ===== Local Guide ===== */
.local-guide {
  margin-bottom: 3rem;
}

.local-guide h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .12em;
}

.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
}

/* ===== Footer ===== */
.footer {
  margin-top: auto;
  opacity: .7;
  font-size: .8rem;
}

/* ===== Soda Bubbles (Pure CSS) ===== */
.bubbles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.12) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.08) 3px, transparent 4px),
    radial-gradient(circle at 40% 30%, rgba(255,255,255,.1) 2px, transparent 3px);
  animation: float 18s linear infinite;
  pointer-events: none;
}

@keyframes float {
  from { background-position-y: 100%; }
  to { background-position-y: -100%; }
}
