/* ==========================================================================
   Base & Custom Utility Styles for Flores de Papel Hamburg
   Works universally both in static browsers and in build tools
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
  background-color: #FAF8F5;
  color: #232B25;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark body,
body.dark {
  background-color: #0F1410 !important;
  color: #E8ECE9 !important;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Custom Components & Utility Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #1b2c1d, #0d170e);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

html.dark .btn-primary {
  background: linear-gradient(135deg, #e5c960, #d4b037);
  color: #0d170e;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1b2c1d;
  background: #ffffff;
  border: 1px solid rgba(27, 44, 29, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f4f7f4;
}

html.dark .btn-secondary {
  background: #161D18;
  color: #f7edc5;
  border-color: rgba(255,255,255,0.1);
}

html.dark .btn-secondary:hover {
  background: #232B25;
}

.card-luxury {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(27, 44, 29, 0.08);
  box-shadow: 0 4px 20px -2px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card-luxury:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 176, 55, 0.4);
  box-shadow: 0 12px 28px -4px rgba(0,0,0,0.1);
}

html.dark .card-luxury {
  background: #161D18;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px -2px rgba(0,0,0,0.4);
}

html.dark .card-luxury:hover {
  border-color: rgba(229, 201, 96, 0.4);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #e5ece5;
  color: #2b422d;
  border: 1px solid rgba(43, 66, 45, 0.15);
}

html.dark .badge-tag {
  background-color: rgba(27, 44, 29, 0.8);
  color: #f7edc5;
  border-color: rgba(229, 201, 96, 0.25);
}

.bg-subtle-pattern {
  background-color: #FAF8F5;
  background-image: radial-gradient(rgba(43, 66, 45, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

html.dark .bg-subtle-pattern {
  background-color: #0F1410;
  background-image: radial-gradient(rgba(229, 201, 96, 0.03) 1px, transparent 0);
}
