/*
Theme Name: Don Snacko Minimal
Theme URI: https://donsnacko.example
Author: Don Snacko
Description: Minimal one-page theme (black) with centered logo linking to Instagram, modern CTA, and fixed translucent footer.
Version: 1.5.0
License: GNU GPL v2 or later
Text Domain: don-snacko-minimal
*/

:root{
  --bg: #000;
  --text: #fff;
  --muted: #c8c8c8;
  --line: #232323;
}

*{ box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-wrap{
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px calc(120px + env(safe-area-inset-bottom));
  text-align: center;
  gap: 16px;
}

.logo-link{
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  border: 0;
  transition: transform .18s ease, filter .18s ease;
  will-change: transform;
}

.logo-link:hover{ transform: scale(1.015); filter: brightness(1.03); }

.logo-img{
  max-width: min(92vw, 1080px);
  max-height: min(62vh, 900px);
  height: auto; width: auto;
}

.divider{
  width: 120px;
  height: 1px;
  background: var(--line);
  margin: 4px auto 0;
}

.cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .06s ease, box-shadow .2s ease;
}

.cta:hover{
  color: var(--text);
  border-color: #3a3a3a;
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.cta svg{ width: 18px; height: 18px; }

.site-footer{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  width: 100%;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--muted);
  background: rgba(0,0,0,.85);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.site-footer small{ opacity: .95; }
.site-footer .sep{ opacity: .5; padding: 0 8px; }
.site-footer a{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted #666;
}
.site-footer a:hover{
  color: var(--text);
  border-bottom-color: var(--text);
}
