@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap');

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

body {
  font-family: 'Nunito', sans-serif;
  background-color: #CC0000;
}

/* ===== HERO ===== */
.hero {
  background-color: #CC0000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.nav-brand {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #FFC72C;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-social .at {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* ===== CONTENT ===== */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  padding-bottom: 56px;
}

/* ===== STATUS BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.badge.open  { color: #4ade80; }
.badge.open  .badge-dot { background: #4ade80; }
.badge.closed { color: #ff6b6b; }
.badge.closed .badge-dot { background: #ff6b6b; animation: none; }

/* ===== LOGO ===== */
.logo-wrap {
  margin-bottom: 28px;
}

#logoCanvas {
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===== HEADLINE ===== */
.headline {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.headline span {
  color: #FFC72C;
}

/* ===== SUBLINE ===== */
.subline {
  font-size: clamp(14px, 2.3vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 500px;
}

/* ===== BUTTONS ===== */
.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn:hover  { transform: scale(1.04); opacity: 0.95; }
.btn:active { transform: scale(0.98); }

.btn-map {
  background: #FFC72C;
  color: #7A3B00;
}

.btn-whatsapp {
  background: #ffffff;
  color: #128C7E;
  border: 2px solid rgba(18, 140, 126, 0.15);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SWOOSH ===== */
.swoosh {
  margin-top: 40px;
  width: 110px;
  height: 8px;
  opacity: 0.3;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.footer-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-value {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.footer-value.closed-day {
  color: rgba(255, 255, 255, 0.4);
}

.footer-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .nav { padding: 14px 20px; }
  .footer { gap: 16px; padding: 18px 20px; }
  .footer-sep { display: none; }
  .cta-group { flex-direction: column; align-items: center; }
}
