/* ============================================
   DOT kuchyně — base styles (stripped)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  /* Colors — monochrome only */
  --bg: #ffffff;
  --bg-warm: #f5f5f5;
  --bg-sand: #eeeeee;
  --ink: #000000;
  --ink-soft: #222222;
  --ink-muted: #777777;
  --line: #dddddd;
  --line-soft: #e8e8e8;
  --sand: #555555;
  --sand-dark: #333333;
  --gorenje: #333333;
  --gorenje-deep: #111111;
  --star: #999999;

  /* Fonts — single sans-serif */
  --serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --display-xl: clamp(40px, 7vw, 104px);
  --display-l: clamp(32px, 5.2vw, 78px);
  --display-m: clamp(28px, 3.8vw, 56px);
  --display-s: clamp(24px, 2.6vw, 40px);

  /* Spacing */
  --section: 140px;
  --gutter: 80px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* overflow-x:clip clips horizontal overflow without creating a scroll container,
   so position:sticky still works correctly. */
body { overflow-x: clip; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography utilities */
.serif { font-family: var(--sans); font-weight: 400; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--sans); font-style: normal; font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.body-text {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.65;
  color: #555555;
  font-weight: 300;
  text-wrap: pretty;
}
p strong, .body-text strong {
  font-weight: 600;
  color: var(--ink);
}

.body-small {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  font-weight: 400;
}

.display-xl { font-family: var(--sans); font-weight: 600; font-size: var(--display-xl); line-height: 1.02; letter-spacing: -0.025em; }
.display-l  { font-family: var(--sans); font-weight: 600; font-size: var(--display-l);  line-height: 1.05; letter-spacing: -0.02em; }
.display-m  { font-family: var(--sans); font-weight: 600; font-size: var(--display-m);  line-height: 1.08; letter-spacing: -0.015em; }
.display-s  { font-family: var(--sans); font-weight: 600; font-size: var(--display-s);  line-height: 1.15; letter-spacing: -0.01em; }

/* Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Section */
.section { padding: var(--section) 0; }
.section-tight { padding: 96px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: #333;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
}
.btn-ghost:hover { background: var(--bg-warm); }

/* Arrow */
.btn-arrow::after {
  content: '→';
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 0.25s ease;
}
.btn:hover .btn-arrow::after { transform: translateX(3px); }

/* Section header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.section-header .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-header h2 { margin-bottom: 24px; }
.section-header p { margin: 0 auto; max-width: 580px; }

/* Decorative dot accent */
.dot-accent {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 0;
  background: var(--ink);
  vertical-align: middle;
  margin-left: 4px;
}

/* Subtle divider */
.hairline {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Form */
input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-bottom-color: var(--ink); }
label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

/* Hide scrollbars in horizontal sliders */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* Utility: subtle image placeholder gradient (used as fallback) */
.img-fallback {
  background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 100%);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --section: 80px;
    --display-l: clamp(38px, 10vw, 52px);
  }

  .body-text {
    font-size: 17px;
  }

  .section-header {
    margin-bottom: 48px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .section-header p {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
}
