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

:root {
  --gold: #f4c542;
  --gold-dark: #b9891f;
  --black: #060608;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  background: var(--black);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ===== Background ===== */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.92) 100%);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
}

@media (max-width: 480px) {
  .navbar { padding: 16px 18px; }
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-book {
  text-decoration: none;
  font-family: 'Bungee', cursive;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--black);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.btn-book:hover {
  transform: scale(1.06);
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-back svg {
  width: 18px;
  height: 18px;
}

.btn-back:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateX(-2px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.brand-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-title .line1 {
  display: block;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 4px;
}

.brand-title .line2 {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2.7rem);
  color: #fff;
  letter-spacing: 5px;
  font-weight: 500;
}

.brand-title .fade-word {
  color: var(--gold);
}

.tag-marker {
  font-family: 'Permanent Marker', cursive;
  color: #fff;
  font-size: 1.1rem;
  transform: rotate(-3deg);
  margin-bottom: 10px;
}

.subtitle {
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #cfcfcf;
  margin-bottom: 36px;
}

/* ===== Hero-only label/subtitle (kept separate from .tag-marker/.subtitle so home.html is unaffected) ===== */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.hero-label::before,
.hero-label::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #d8d8d8;
  margin-bottom: 40px;
}

.shop-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #999;
}

.shop-status.is-open .status-dot {
  background: #3ddc61;
  box-shadow: 0 0 10px 2px rgba(61, 220, 97, 0.85);
  animation: pulse-green 1.8s infinite;
}

.shop-status.is-open .status-text {
  color: #3ddc61;
}

.shop-status.is-closed .status-dot {
  background: #ff4d4d;
  box-shadow: 0 0 10px 2px rgba(255, 77, 77, 0.85);
  animation: pulse-red 2.4s infinite;
}

.shop-status.is-closed .status-text {
  color: #ff6b6b;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 97, 0.65); }
  70% { box-shadow: 0 0 0 11px rgba(61, 220, 97, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 97, 0); }
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-enter {
  position: relative;
  overflow: hidden;
  padding: 17px 54px;
  font-size: 0.95rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #ffd35c 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 4px 20px rgba(244, 197, 66, 0.35), 0 0 0 1px rgba(244, 197, 66, 0.15);
}

.btn-enter span {
  position: relative;
  z-index: 1;
}

.btn-enter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-enter:hover {
  background: linear-gradient(135deg, #ffe08a 0%, #ffd35c 55%, var(--gold) 100%);
  box-shadow: 0 6px 28px rgba(244, 197, 66, 0.55), 0 0 0 1px rgba(244, 197, 66, 0.3);
}

.btn-enter:hover::before {
  left: 125%;
}

.btn-primary, .btn-secondary {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-block;
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffd35c;
}

.btn-secondary {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { text-align: center; }
}
