/* ===========================================
   MOLOTOV ISRAEL - Design System
   Dark theme inspired by cafe.zapatista.ru
   =========================================== */

/* Font Faces */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Protest Guerrilla';
  src: url('fonts/protest-guerrilla.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Design Tokens */
:root {
  /* Colors */
  --color-bg: #0a0a0a;
  --color-bg-section: rgba(0, 0, 0, 0.7);
  --color-text: #ffffff;
  --color-text-muted: #b0b0b0;
  --color-accent: #d32f2f;
  --color-accent-light: #ff5252;
  --color-border: rgba(255, 255, 255, 0.25);
  
  /* Typography */
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Protest Guerrilla', cursive;
  
  /* Sizes */
  --size-base: 1rem;
  --size-sm: 0.875rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Layout */
  --max-width: 900px;
  --border-radius: 4px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url('images/molotov-logo.png');
  background-repeat: repeat;
  background-size: 400px;
  background-blend-mode: overlay;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(var(--size-2xl), 8vw, var(--size-3xl));
  color: var(--color-accent);
}

h2 {
  font-size: clamp(var(--size-xl), 5vw, var(--size-2xl));
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-text);
  text-decoration: underline;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Header */
.header {
  padding: var(--space-lg) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.header__logo {
  max-width: 250px;
  height: auto;
  margin-bottom: var(--space-sm);
}

.header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.header__title::before {
  content: '★';
  color: var(--color-accent);
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.4em;
}

.header__tagline {
  color: var(--color-text-muted);
  font-size: var(--size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Main Content */
main {
  padding: var(--space-xl) 0;
}

/* Sections */
.section {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.section__content {
  max-width: 65ch;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Order Button/Link */
.cta {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
}

.cta:hover {
  background: transparent;
  color: var(--color-accent);
  text-decoration: none;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  list-style: none;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text);
  font-weight: 500;
}

.social-links a:hover {
  color: var(--color-accent);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Footer */
.footer {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer__text {
  color: var(--color-text-muted);
  font-size: var(--size-sm);
  margin-top: var(--space-md);
}

/* Utilities */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Responsive */
@media (min-width: 768px) {
  :root {
    --space-sm: 1.25rem;
    --space-md: 2rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-xl);
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  animation: fadeIn 0.6s ease-out;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
