/* Verandah Café - Design System & Layout Styles */

/* CSS Custom Properties - Single Source of Truth */
:root {
  /* Colors - Professional Grey Palette 2025 */
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  /* Professional Greys */
  --grey-light: #F8F9FA;
  --grey-medium: #6C757D;
  --grey-dark: #343A40;
  --grey-darker: #212529;
  --grey-accent: #495057;
  
  /* Coffee & Warm Browns - Reduced Usage */
  --coffee: #8B4513;
  --coffee-light: #D2691E;
  --coffee-dark: #654321;
  --coffee-cream: #F5F5F5;
  --coffee-mocha: #6F4E37;
  --coffee-espresso: #3C2415;
  
  /* Warm Accents */
  --cream: #FFF8DC;
  --warm-white: #FDFCFA;
  --gold: #DAA520;
  --gold-light: #F4E4BC;
  --terracotta: #E2725B;
  --terracotta-light: #F4A896;
  
  /* Natural Greens */
  --sage: #9CAF88;
  --sage-light: #B8D4A0;
  --sage-dark: #7A8B6B;
  --mint: #A8D5BA;
  --olive: #6B7C32;
  
  /* Status Colors */
  --success: #2D5A27;
  --success-light: #4A7C59;
  --warning: #B8860B;
  --warning-light: #DAA520;
  --danger: #8B0000;
  --danger-light: #CD5C5C;
  
  /* Neutrals */
  --white: #FFFFFF;
  --black: #1A1613;
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-display: 'Playfair Display', Georgia, serif;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Layout */
  --max-w: 1200px;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base Styles */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: #000000;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p { margin-bottom: var(--space-4); }
a { color: var(--coffee); text-decoration: none; }
a:hover { color: var(--coffee-light); }

/* Focus States */
:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--coffee);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--coffee-light);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--coffee);
  border: 2px solid var(--coffee);
}

.btn-outline:hover {
  background: var(--coffee);
  color: var(--warm-white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--warm-white);
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: var(--warm-white);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Section */
.section {
  padding: var(--space-12) 0;
}

@media (min-width: 640px) {
  .section { padding: var(--space-16) 0; }
}

@media (min-width: 1280px) {
  .section { padding: var(--space-20) 0; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }
.hidden { display: none; }
.visible { display: block; }
