/* reiwa.bar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0A0A0F; color: #F5F5F5; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.65; }

/* Entrance / Hero Section */
.entrance {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  width: 50vw;
  height: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123,97,255,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.entrance-inner {
  position: relative;
  z-index: 1;
}
.neon-sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.neon-letter {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 10vw, 5rem);
  color: #FF3D71;
  text-shadow: 0 0 7px rgba(255,61,113,0.6), 0 0 30px rgba(255,61,113,0.3), 0 0 60px rgba(255,61,113,0.15);
  line-height: 0.95;
}
.bar-label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #7B61FF;
  letter-spacing: 0.4em;
  display: block;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(123,97,255,0.5), 0 0 30px rgba(123,97,255,0.2);
}
.enter-btn {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #FF3D71;
  border: 2px solid #FF3D71;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255,61,113,0.3);
}
.enter-btn:hover {
  background: rgba(255,61,113,0.1);
  box-shadow: 0 0 20px rgba(255,61,113,0.4), inset 0 0 20px rgba(255,61,113,0.1);
  color: #FFD93D;
  border-color: #FFD93D;
  text-shadow: 0 0 15px rgba(255,217,61,0.5);
}

/* Section Styling */
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #F5F5F5;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(255,61,113,0.2);
}

/* Menu / Cocktail Section */
.menu {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.cocktail-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem 0;
  scroll-behavior: smooth;
}
.cocktail-scroll::-webkit-scrollbar {
  height: 6px;
}
.cocktail-scroll::-webkit-scrollbar-track {
  background: rgba(138, 138, 154, 0.1);
  border-radius: 3px;
}
.cocktail-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 61, 113, 0.4);
  border-radius: 3px;
}
.cocktail-card {
  background: #141420;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #FF3D71, #7B61FF) 1;
  border-radius: 0 0 12px 12px;
  padding: 1.5rem 1.2rem;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cocktail-card:hover {
  box-shadow: 0 0 20px rgba(255,61,113,0.12);
  border-top: 2px solid #FFD93D;
  transform: translateY(-4px);
}
.drink-swatch {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,61,113,0.3);
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255,61,113,0.1);
}
.cocktail-card:hover .drink-swatch {
  border-color: #FFD93D;
  box-shadow: 0 0 20px rgba(255,217,61,0.25);
}
.drink-name-jp {
  font-size: 0.85rem;
  color: #8A8A9A;
  font-weight: 400;
}
.drink-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #F5F5F5;
}
.drink-ingredient {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #8A8A9A;
  font-weight: 400;
}

/* Bar Guide / Reviews Section */
.guide {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.bar-card {
  background: #141420;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,61,113,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.bar-card:hover {
  box-shadow: 0 0 16px rgba(255,61,113,0.15);
  border-color: rgba(255,61,113,0.3);
  background: #1a1a2e;
}
.bar-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #F5F5F5;
}
.hood-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #8A8A9A;
  display: block;
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rating-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
  align-items: center;
}
.dot-on, .dot-off {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.dot-on {
  background: #FFD93D;
  box-shadow: 0 0 8px rgba(255,217,61,0.4);
}
.dot-off {
  background: transparent;
  border: 2px solid #FFD93D;
}
.bar-excerpt {
  font-size: 0.9rem;
  color: #8A8A9A;
  line-height: 1.5;
  font-weight: 400;
}

/* Culture / Editorial Section */
.culture {
  background: linear-gradient(180deg, rgba(123,97,255,0.04) 0%, transparent 100%);
  padding: 6rem 2rem;
  position: relative;
}
.culture::before {
  content: '';
  position: absolute;
  width: 50vw;
  height: 50vw;
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(123,97,255,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.culture-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.culture-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255,61,113,0.15);
}
.culture-text {
  font-size: 1rem;
  color: #8A8A9A;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}
.pull-quote {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.3rem;
  color: #FF3D71;
  text-shadow: 0 0 20px rgba(255,61,113,0.2);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Footer */
.footer {
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-top: 1px solid rgba(255,61,113,0.1);
}
.footer-jp {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: #8A8A9A;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.neon-divider {
  height: 2px;
  max-width: 200px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, #FF3D71, transparent);
}
.footer-link {
  font-size: 0.85rem;
  color: #8A8A9A;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
.footer-link:hover {
  color: #FF3D71;
  text-shadow: 0 0 10px rgba(255,61,113,0.3);
}
.footer-sep {
  color: #8A8A9A;
  margin: 0 0.8rem;
  opacity: 0.5;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .entrance {
    height: auto;
    min-height: 80vh;
    padding: 3rem 1rem;
  }
  .bar-label {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .bar-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .neon-letter {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .entrance {
    padding: 2rem 1rem;
  }
  .neon-letter {
    font-size: clamp(1.5rem, 7vw, 3rem);
  }
  .bar-label {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .enter-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
  }
  .cocktail-scroll {
    gap: 1rem;
  }
  .cocktail-card {
    min-width: 140px;
    padding: 1.2rem 1rem;
  }
  .menu, .guide, .culture {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
