


/* =====================
   Global variables
===================== */
:root{
  --bg:#0c0c0e;
  --panel:#111216;
  --ink:#e7e7ea;
  --muted:#a7a7b1;
  --accent:#e23b3b;
  --stroke:#2a2b31;
  --ring: #3a3b44;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Reset + base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.6 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  color:#e7e7ea;

  /* Dark overlay first, then your image (same folder) */
  background:
    linear-gradient(rgba(12,12,14,.4), rgba(12,12,14,.4)),
    url("./zzz.jpeg") top center no-repeat fixed;
  background-size: 900px 950px; 
  background-color: #080707;
}

/* =====================
   Header / Nav
===================== */
.site-header{
  position:sticky; top:0; z-index:10;
  background:rgba(12,12,14,.75); backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid var(--stroke);
}
.nav{
  max-width:980px; margin:0 auto; padding:14px 18px;
  display:flex; gap:12px;
}
.nav__link{
  text-decoration:none; color:var(--muted);
  padding:8px 12px; border:1px solid transparent; border-radius:10px;
  transition:color .2s, border-color .2s, background .2s;
}
.nav__link:hover{ color:var(--ink); border-color:var(--ring); background:#0e0f13; }
.nav__link.is-active{ color:var(--ink); border-color:var(--accent); }

/* =====================
   Framed content
===================== */
/* .frame{
  max-width:980px; margin:56px auto; padding:48px 28px 64px;
  border:2px solid var(--stroke);
  border-radius:12px;
  box-shadow: var(--shadow);
  background:rgba(15,16,20,0.88);
  backdrop-filter: blur(6px);
} */

/* =====================
   Home brand styling
===================== */
.brand{
  margin:40px 0 24px; text-align:center;
  letter-spacing:.5px;
}
.brand__main{ 
  display:block; 
  font-size:52px; 
  font-weight:800; 
}
.brand__sub{ 
  display:block; 
  font-size:28px; 
  color:var(--muted); 
  margin-top:6px; 
}

body.home main {
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal centering */
  justify-content: center;  /* vertical centering */
  min-height: 100vh;        /* full screen height */
  padding-top: 80px;        /* space for sticky nav */
  box-sizing: border-box;
}

body.home .brand {
  margin: 0 0 20px; /* reset margins so flex centering works nicely */
}

/* ===== Metal font just for home ===== */
body.home .brand__main{
  font-family: "Metal Mania", ui-sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 64px;
  line-height: 1.05;

  /* metallic silver with subtle red glow */
  background: linear-gradient(180deg,#f1f2f4 0%, #cfd3d8 46%, #9ea4ac 54%, #eceff3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-text-stroke: 1px #d0d5db;
  text-shadow:
    0 0 10px rgba(226,59,59,.25),
    0 2px 0 rgba(0,0,0,.65);
}
body.home .brand__sub{
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  color:#c7cbd1;
  margin-top: 8px;
}

/* =====================
   Speech bubble
===================== */
/* .bubble{
  max-width:700px; margin:36px auto 0; position:relative;
  border:2px solid var(--stroke); border-radius:18px;
  background:#0f1014; padding:18px 20px; */
}
.bubble::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  bottom:-16px; width:26px; height:26px; background:#0f1014;
  border-left:2px solid var(--stroke); border-bottom:2px solid var(--stroke);
  clip-path: polygon(0 0,100% 0,100% 100%); transform:translateX(-50%) rotate(45deg);
}
.bubble__text{ margin:0; text-align:center; font-style:italic; color:var(--ink); }

/* =====================
   Page titles
===================== */
.page-title{ font-size:34px; margin:8px 0 22px; }

/* =====================
   About editor
===================== */
.label{ display:block; margin-bottom:6px; color:var(--muted); }
.textarea{
  width:100%; border:1px solid var(--ring); background:#0c0d11; color:var(--ink);
  border-radius:12px; min-height:180px; padding:14px 16px; resize:vertical;
}
.editor-actions{ display:flex; gap:10px; margin:12px 0 18px; }
.btn{
  cursor:pointer; border:1px solid var(--accent); background:transparent; color:var(--ink);
  padding:10px 14px; border-radius:10px;
}
.btn:hover{ background:#17181d; }
.btn--ghost{ border-color:var(--ring); color:var(--muted); }
.subheading{ margin:6px 0 10px; color:var(--muted); }
.preview-card{
  border:1px solid var(--ring); border-radius:12px; padding:16px; background:#0c0d11; min-height:80px;
  white-space:pre-wrap;
}

/* =====================
   Products grid
===================== */
.grid{
  display:grid; gap:16px;
  grid-template-columns:repeat(auto-fill, minmax(240px,1fr));
}
.card{
  border:1px solid var(--ring); border-radius:14px; overflow:hidden; background:#0e0f13;
}
.card__media{
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(226,59,59,.25), transparent),
    radial-gradient(circle at 70% 30%, rgba(164, 29, 29, 0.35), transparent 40%),
    #7d8093;
  border-bottom:1px solid var(--ring);
}
.card__title{ margin:12px 12px 4px; font-size:16px; color: white; }
.card__meta{ margin:0 12px 14px; color:var(--muted); font-size:13px; }

/* =====================
   Small screens
===================== */
@media (max-width:560px){
  .brand__main{ font-size:40px; }
  .brand__sub{ font-size:22px; }
  .frame{ margin:28px 12px 40px; padding:28px 16px 44px; }
}
/* Gothic About Page Styling */
.about-page .about-frame {
  padding: 60px 40px;
  /* background: rgba(12,12,14,0.85);
  backdrop-filter: blur(6px); */
}

.about-title {
  font-family: "UnifrakturCook", cursive;
  font-size: 64px;
  text-align: center;
  margin-bottom: 40px;
  color: #e5e5e5;
  text-shadow: 0 0 15px rgba(226,59,59,.4), 0 0 30px rgba(0,0,0,.8);
  letter-spacing: 3px;
  opacity: 0.8; /*90% visible */
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Cinzel Decorative", serif;
  font-size: 20px;
  line-height: 1.9;
  color: #d9dadf;
  text-align: justify;
  opacity: 0.8; /*90% visible */
}

.about-content p {
  margin-bottom: 22px;
}

.brand {
  text-align: center;
  margin: 40px 0;
}

.brand__logo {
  max-width: 400px;   /* adjust as needed */
  width: 100%;
  height: auto;
}

