@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Space Mono', monospace;
  --page-padding: 1.5rem;
  --max-width: 1100px;
}

html { font-size: 15.5px; }

body {
  font-family: var(--font-main);
  color: var(--color-text-primary);
  background: var(--color-surface-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-surface-base);
  z-index: 100;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.logo-link { display: inline-block; text-decoration: none; }
.logo { height: 40px; width: auto; display: block; }

nav { display: flex; gap: 1.5rem; align-items: center; }

nav a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
}
nav a:hover { opacity: 0.6; }

hr {
  border: none;
  height: 1px;
  background: var(--color-border-default);
  margin: 0 var(--page-padding);
}

main {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--page-padding);
}

/* HOME */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.col-image img { width: 100%; height: auto; display: block; }

.col-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
  align-self: center;
}

.section-heading-img { height: 28px; width: auto; display: block; align-self: flex-start; }
.col-text p { font-size: 1rem; line-height: 1.55; color: var(--color-text-primary); }

/* BUTTON */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-interactive-fg);
  background: var(--color-interactive-bg);
  border: 2px solid var(--color-interactive-bg);
  border-radius: 5px;
  padding: 0.55rem 0.8rem;
  margin-top: 0.5rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  align-self: flex-start;
}
.btn:hover {
  background: var(--color-interactive-hover-bg);
  color: var(--color-interactive-hover-fg);
  border-color: var(--color-interactive-hover-bg);
  opacity: 1;
}

/* SHOP */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  padding-top: 3rem;
  padding-bottom: 3rem;
  height: 100%;
}

.shop-col-image { min-width: 0; height: 100%; }
.shop-col-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.shop-col-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-width: 0;
}

.product-heading-img { height: 60px; width: auto; display: block; margin-bottom: 0.2rem; align-self: flex-start; }
.shop-col-text .subtitle { font-style: italic; font-weight: 700; font-size: 1rem; color: var(--color-text-primary); }
.shop-col-text p { font-size: 1rem; line-height: 1.55; color: var(--color-text-primary); }
.shop-col-text p.italic { font-style: italic; }
.highlight { font-style: italic; font-weight: 700; }

.pricing { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.3rem; }
.pricing p { font-size: 1rem; }
.pricing strong { font-weight: 700; }

.marquee-wrapper {
  overflow: hidden;
  margin-top: 0.8rem;
  color: var(--color-accent-default);
  font-style: italic;
  white-space: nowrap;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 0.3rem 0;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 14s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-col-image img { width: 100%; height: auto; display: block; }

.about-col-text { display: flex; flex-direction: column; gap: 1.2rem; padding-top: 0.5rem; }
.about-col-text p { font-size: 1rem; line-height: 1.6; color: var(--color-text-primary); }
.about-col-text strong { font-weight: 700; }

/* FOOTER */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0.6rem var(--page-padding);
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
  font-size: 0.62rem;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border-subtle);
}

footer .footer-center { text-align: center; }
footer .footer-right { text-align: right; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .home-layout, .shop-layout, .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }
  nav { gap: 1rem; font-size: 0.9rem; }
  footer { grid-template-columns: 1fr; gap: 0.3rem; font-size: 0.6rem; }
  footer .footer-center, footer .footer-right { text-align: left; }
}
