/* ===== Root Theme ===== */
:root {
  --cola-black: #0e0e0e;
  --cola-red: #c4161c;
  --cherry-red: #e0282f;
  --garnet: #73000a;
  --cream: #f5f1ec;
  --text-light: #f2f2f2;
}

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

html, body {
  height: 100%;
  background: radial-gradient(
    circle at top,
    var(--cherry-red),
    var(--cola-black) 70%
  );
  font-family: "Inter", sans-serif;
  color: var(--text-light);
}

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


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

/* ===== Hero ===== */
.hero {
  margin: 2rem 0;
}

.logo {
  max-width: 760px;
  width: 90%;
  filter:
    drop-shadow(0 10px 25px rgba(0,0,0,0.6))
    drop-shadow(0 0 15px rgba(224,40,47,0.5));
}

/* ===== Content ===== */
.content {
  flex: 1;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.75rem;
}

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

.btn {
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(
    135deg,
    var(--cherry-red),
    var(--garnet)
  );
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.btn.secondary {
  border: 2px solid var(--cream);
  color: var(--cream);
  background: transparent;
}

.btn.secondary:hover {
  background: var(--cream);
  color: var(--cola-black);
}

/* ===== Footer ===== */
.footer {
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top:2rem;
} 
.footer a {
color:#F2F2F2;
text-decoration:none;

}

/* ===== Drinks & Eats Section ===== */
.spots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1rem auto 2rem;
  max-width: 760px;
}

.spot-card {
  background: linear-gradient(
    145deg,
    rgba(0,0,0,0.55),
    rgba(115,0,10,0.65)
  );
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 12px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

.spot-card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.spot-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spot-card li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Accent differentiation */
.spot-card.drinks {
  border-top: 4px solid var(--cherry-red);
}

.spot-card.eats {
  border-top: 4px solid var(--garnet);
}
