/* Bellucci Design System - Qitchen Style */

:root {
  /* Colors */
  --bg-dark: #0a0b0a;
  --bg-light: #efe7d2;
  --accent-gold: #cfbe91;
  --accent-warm: #a6796f;
  --text-light: #efe7d2;
  --text-dark: #0a0b0a;
  --border-dark: #333330;
  --overlay: rgba(10, 11, 10, 0.7);

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-size-hero-mobile: 48px;
  --font-size-hero-desktop: 96px;
  --font-size-h2-mobile: 32px;
  --font-size-h2-desktop: 56px;
  --font-size-h3-mobile: 24px;
  --font-size-h3-desktop: 32px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-label: 12px;
  --letter-spacing-headline: 0.1em;
  --letter-spacing-label: 0.15em;
  --line-height-tight: 1.1;
  --line-height-normal: 1.6;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;

  /* Components */
  --border-radius: 10px;
  --border-radius-lg: 16px;
  --input-height: 50px;
  --button-height: 50px;
  --header-height: 70px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  color: var(--text-light);
  background-color: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.text-uppercase {
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
