/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

/* COLOR VARIABLES */
:root {
  --jar-green: #004B23;
  --electric-lime: #70E000;
  --vinegar-white: #F8F9FA;
  --pickle-skin: #386641;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: var(--jar-green);
  color: var(--vinegar-white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;

  background-image: 
    linear-gradient(
      rgba(0, 75, 35, 0.15),
      rgba(0, 75, 35, 0.25)
    ),
    url("assets/deli-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* JAR CONTAINER */
.jar {
  position: relative;
  width: min(90vw, 360px);
  padding: 2.5rem 2rem 3rem;

  /* Jar shape */
  border-radius: 28px 28px 42px 42px;

  /* Glass effect */
  background: rgba(0, 75, 35, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Inner glow (brine) */
  box-shadow:
    inset 0 0 30px rgba(112, 224, 0, 0.35),
    0 25px 60px rgba(0, 0, 0, 0.45);

  border: 1px solid rgba(112, 224, 0, 0.35);
}

/* Jar neck 
.jar::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 22px;

  background: rgba(0, 75, 35, 0.45);
  border-radius: 16px 16px 8px 8px;

  box-shadow:
    inset 0 0 12px rgba(112, 224, 0, 0.4),
    0 6px 16px rgba(0,0,0,0.35);
}*/

/* Jar rim highlight 
.jar::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 6px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(248,249,250,0.7),
    transparent
  );

  border-radius: 6px;
}*/

/* ABSTRACT NEON GLOW BACKGROUND */
.glow-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(112,224,0,0.18), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(112,224,0,0.12), transparent 60%);
  z-index: 0;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  max-width: 420px;
}

/* BRAND */
.wordmark {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* HEADLINE */
h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2.8rem, 8vw, 3.6rem);
  line-height: 1;
  margin: 1.2rem 0 1rem;
  color: var(--vinegar-white);
  text-shadow:
    0 0 8px rgba(112,224,0,0.6),
    0 0 16px rgba(112,224,0,0.4);
}

/* TAGLINE */
.tagline {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* STATUS */
.status {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0.75;
}

/* ACTIONS */
.actions {
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
  background: var(--electric-lime);
  color: var(--jar-green);
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 8px 20px rgba(112,224,0,0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 12px 28px rgba(112,224,0,0.45);
}

/* Social */
.social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
  opacity: 0.85;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

.social svg {
  width: 24px;
  height: 24px;
  fill: var(--vinegar-white);
  filter: drop-shadow(0 0 6px rgba(112,224,0,0.35));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social a:hover svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(112,224,0,0.6));
}