@charset "utf-8";
/* CSS Document */

/* Nickel City Slashers — Mobile-first dark theme */
:root {
  --bg: #0b0b0c;
  --ink: #f6f6f6;
  --muted: #b8b8c3;
/* --accent: #e50914;  blood red */
  --accent: #000000; /* Black */
  --card: #151517;
  --maxw: 1100px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus { left: 1rem; top: 1rem; background: var(--accent); color: #fff; padding: .5rem; }

.site-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem;
  background: #a20202;
  position: sticky; top: 0; z-index: 100;
}
.brand { display: flex; align-items: center; gap: .5rem; }
.brand img { height: 48px; }
.wordmark { font-weight: 800; font-size: 1.2rem; text-align:center;}

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: .3rem;
  background: none; border: none; cursor: pointer;
}
.nav-toggle .bar {
  width: 24px; height: 3px; background: var(--ink);
}
.site-nav {
  position: absolute; top: 100%; right: 0; background: #000;
  transform: translateY(-200%); transition: transform .3s ease;
}
.site-nav.open { transform: translateY(0); }
.site-nav ul { list-style: none; padding: 0; margin: 0; }
.site-nav a {
  display: block; padding: 1rem; color: var(--ink); text-decoration: none;
}
.site-nav a.active { background: var(--accent); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; transform: none; background: none; }
  .site-nav ul { display: flex; gap: 1rem; }
  .site-nav a { padding: .5rem 1rem; }
}

/* Hero */

.hero {
  min-height: 90vh;
  background: url('https://images.unsplash.com/photo-1504196606672-aef5c9cefc92?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--ink);
  position: relative;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem;
}
.hero h1 { font-size: 2.5rem; font-weight: 900; margin: 0; }
.hero .hollow { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.hero .tag { margin: 1rem 0; font-size: 1.2rem; }
.cta {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: .8rem 1.5rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 700;
  transition: background .2s;
}
.cta:hover { background: #b20710; }
.cta.alt { background: #333; }
.cta.ghost { background: transparent; border: 2px solid var(--ink); }

/* Sections */
.section { padding: 4rem 1rem; }
.container { max-width: var(--maxw); margin: 0 auto; }
h2 { font-size: 2rem; margin-bottom: 1rem; }

/* Divider */
.divider {
  min-height: 50vh;
  background: var(--bg) center/cover no-repeat;
  background-image: var(--bg);
}

/* Projects grid */
.projects-grid {
  display: grid; gap: 1.5rem;
}
@media(min-width: 640px) {
  .projects-grid { grid-template-columns: repeat(3,1fr); }
}
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.card-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}
.card-body { padding: 1rem; }

/* Contact form */
.form .field { margin-bottom: 1rem; display: flex; flex-direction: column; }
label { margin-bottom: .3rem; }
input, textarea {
  padding: .7rem; border: none; border-radius: var(--radius);
  font-size: 1rem; font-family: inherit;
}
.error { color: var(--accent); font-size: .8rem; }

/* Store */
.store { padding: 4rem 1rem; }
.store-header { display: flex; justify-content: space-between; align-items: center; }
.store-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media(min-width:640px) { .store-grid { grid-template-columns: repeat(3,1fr); } }
.product { text-align: center; }
.product-art {
  aspect-ratio: 1/1; background: center/cover no-repeat;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

/* Footer */
.site-footer { text-align: center; padding: 2rem; font-size: .9rem; color: var(--muted); }


/* Blood smear overlay */
#transition-overlay {
  position: fixed;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1603344205158-5f6e6e17cf6d?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat,
              rgba(139,0,0,0.9);
  transform: translateY(-100%);
  transition: transform 1s ease;
  z-index: 9999;
  pointer-events: none;
}
#transition-overlay.active {
  transform: translateY(0);
}
.video-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background: black;
}

.video-hero .overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: white;
  text-shadow: 0 0 20px #000;
}

.video-hero .overlay img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.video-container {
  position: relative;
  width: 100%; /* Take up the full width of the parent div */
  padding-top: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100 = 56.25) */
  height: 0; /* Necessary to prevent vertical overflow */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-links a {
  color: #FFF; /* Dark gray color for icons */
  font-size: 24px; /* Adjust the size of the icons */
  margin-right: 15px; /* Spacing between icons */
  text-decoration: none; /* Remove underline from links */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.social-links a:hover {
  color: #007bff; /* Change color on hover (you can use brand colors) */
}

/* Optional: To place them at the bottom of the card content */
.card-content .social-links {
  margin-top: 20px;
  text-align: center; /* Center the icons within the container */
}