/* =================================================================
   ANNA VOUDOURI JEWELLERY — TACTICAL LUXURY
   "Bling for the Bunker since 2003"
   A jewellery website that has never been attempted before.
   ================================================================= */

/* ---- Camo tile background (SVG data URI, tiled across the page) ---- */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive, sans-serif;
  color: #ffffff;
  /* Woodland camo tile, repeated edge to edge */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect width='120' height='120' fill='%234b5320'/%3E%3Cpath d='M10 12 Q35 0 50 18 Q70 35 45 50 Q20 60 8 40 Z' fill='%23556b2f'/%3E%3Cpath d='M70 5 Q100 8 110 30 Q118 55 90 58 Q72 50 70 25 Z' fill='%233b3a1a'/%3E%3Cpath d='M5 70 Q30 65 40 85 Q48 108 20 112 Q0 100 5 80 Z' fill='%23787346'/%3E%3Cpath d='M65 70 Q95 62 112 80 Q118 105 88 110 Q66 100 65 82 Z' fill='%23556b2f'/%3E%3Cpath d='M45 55 Q60 52 64 66 Q62 80 48 78 Q38 70 45 58 Z' fill='%233b3a1a'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-attachment: fixed;
}

/* ---- Global neon shock palette ---- */
:root {
  --magenta: #ff00cc;
  --cyan: #00ffff;
  --yellow: #ffff00;
  --camo-dark: #3b3a1a;
}

a { color: var(--cyan); text-decoration: underline; }
a:hover { color: var(--yellow); background: var(--magenta); }
a:visited { color: #ff66ff; }

/* ---- Wrapper to keep the table-era look ---- */
.page {
  max-width: 880px;
  margin: 14px auto;
  border: 6px ridge var(--magenta);
  background: rgba(0,0,0,0.78);
  box-shadow: 0 0 0 4px var(--cyan), 0 0 22px 8px var(--magenta);
}

/* ---- Top banner ---- */
.banner {
  text-align: center;
  padding: 14px 8px 6px;
  background: repeating-linear-gradient(
    45deg, var(--magenta) 0 18px, var(--cyan) 18px 36px, var(--yellow) 36px 54px);
  border-bottom: 5px dashed var(--yellow);
}
.banner h1 {
  margin: 0;
  font-size: 40px;
  color: #fff;
  text-shadow: 3px 3px 0 #000, -2px -2px 0 var(--magenta), 0 0 12px var(--cyan);
  letter-spacing: 1px;
}
.banner .tagline {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  background: var(--yellow);
  display: inline-block;
  padding: 2px 10px;
  border: 2px solid #000;
  transform: rotate(-2deg);
}

/* ---- Scrolling marquee threat-level strip ---- */
.threat {
  background: #000;
  color: var(--yellow);
  font-size: 15px;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 3px solid var(--cyan);
}

/* ---- Navbar ---- */
nav {
  background: var(--camo-dark);
  padding: 8px 6px;
  text-align: center;
  border-bottom: 4px double var(--magenta);
}
nav a {
  display: inline-block;
  margin: 3px;
  padding: 6px 9px;
  background: linear-gradient(var(--cyan), #008b8b);
  color: #000 !important;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  border: 3px outset var(--yellow);
  border-radius: 4px;
  text-shadow: 1px 1px 0 var(--yellow);
}
nav a:hover {
  background: linear-gradient(var(--magenta), #aa0088);
  color: var(--yellow) !important;
  border-style: inset;
}
nav a.current { background: linear-gradient(var(--yellow), #cccc00); }

/* The page whose nav button must show its entire (very long) title */
nav a.longtitle {
  white-space: nowrap;
  background: linear-gradient(var(--magenta), var(--yellow));
  color: #000 !important;
  border-color: var(--cyan);
}

/* ---- Content ---- */
.content { padding: 18px 24px 28px; }
.content h2 {
  color: var(--yellow);
  font-size: 28px;
  text-shadow: 2px 2px 0 var(--magenta), -1px -1px 0 var(--cyan);
  border-bottom: 3px dotted var(--cyan);
  padding-bottom: 4px;
}
.content h3 {
  color: var(--cyan);
  text-shadow: 1px 1px 0 #000;
  font-size: 20px;
}
.content p { font-size: 16px; line-height: 1.55; }
.content li { font-size: 16px; line-height: 1.5; margin-bottom: 6px; }

/* Neon callout box */
.alert {
  border: 4px dashed var(--yellow);
  background: var(--magenta);
  color: #000;
  font-weight: bold;
  padding: 12px 16px;
  margin: 18px 0;
  text-align: center;
  font-size: 17px;
  box-shadow: 0 0 12px var(--cyan);
}

/* Product / item cards */
.grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.card {
  width: 230px;
  background: #000;
  border: 4px ridge var(--cyan);
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 10px var(--magenta);
}
.card .emoji { font-size: 54px; line-height: 1; }
.card h4 { color: var(--magenta); margin: 8px 0 4px; font-size: 18px; }
.card .price {
  color: #000; background: var(--yellow); font-weight: bold;
  display: inline-block; padding: 2px 8px; border: 2px solid #000; transform: rotate(-3deg);
}
.card .stock { color: var(--cyan); font-size: 13px; margin-top: 6px; }

/* Blink (real, for the full nostalgia hit) */
.blink { animation: blink 0.9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Star / rainbow rule */
.rainbow-rule {
  height: 8px; border: 0; margin: 16px 0;
  background: repeating-linear-gradient(90deg,
    var(--magenta) 0 16px, var(--cyan) 16px 32px, var(--yellow) 32px 48px);
}

/* Footer */
footer {
  text-align: center;
  padding: 16px 10px;
  font-size: 13px;
  color: var(--cyan);
  border-top: 4px double var(--yellow);
  background: var(--camo-dark);
}
.counter {
  display: inline-block;
  background: #000;
  color: #0f0;
  font-family: "Courier New", monospace;
  padding: 3px 8px;
  border: 2px solid var(--cyan);
  letter-spacing: 3px;
}
.webring { margin-top: 10px; font-size: 12px; color: var(--yellow); }
.badge {
  display: inline-block; margin: 3px; padding: 3px 7px; font-size: 11px;
  background: #000; color: var(--yellow); border: 2px solid var(--magenta);
}

/* Under construction */
.construction {
  text-align: center;
  font-size: 22px;
  color: var(--yellow);
  background: repeating-linear-gradient(45deg, #000 0 20px, #b8860b 20px 40px);
  padding: 30px 10px;
  border: 5px solid var(--magenta);
  margin: 20px 0;
}
.construction .big { font-size: 64px; }
