/**
 * DarcyWillard - Core Styles
 * @version 2.1.0
 * @since 2024-05-27
 */

/* CSS Variables */
:root {
  --dw-cream: #faf8f5;
  --dw-rose: #d4a5a5;
  --dw-gold: #c9a66b;
  --dw-brown: #5c4033;
  --dw-dark: #2d2420;
  --dw-text: #3d3633;
  --dw-light: #f5f1ed;
  --dw-border: #e8e0d8;
  --dw-accent: #b8956a;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dw-text);
  background-color: var(--dw-cream);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--dw-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* Container */
.dw-wrap-a7x9 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.dw-btn-n4j8k {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dw-cream);
  background-color: var(--dw-brown);
  border: 1px solid var(--dw-brown);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dw-btn-n4j8k:hover {
  background-color: transparent;
  color: var(--dw-brown);
}

.dw-btn-secondary-b5c2d {
  background-color: transparent;
  color: var(--dw-brown);
}

.dw-btn-secondary-b5c2d:hover {
  background-color: var(--dw-brown);
  color: var(--dw-cream);
}

/* Forms */
.dw-input-m7k9p {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--dw-border);
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.dw-input-m7k9p:focus {
  outline: none;
  border-color: var(--dw-gold);
}

/* Utility */
.dw-text-center { text-align: center; }
.dw-text-left { text-align: left; }
.dw-text-right { text-align: right; }

.dw-mt-1 { margin-top: 0.5rem; }
.dw-mt-2 { margin-top: 1rem; }
.dw-mt-3 { margin-top: 1.5rem; }
.dw-mt-4 { margin-top: 2rem; }

.dw-mb-1 { margin-bottom: 0.5rem; }
.dw-mb-2 { margin-bottom: 1rem; }
.dw-mb-3 { margin-bottom: 1.5rem; }
.dw-mb-4 { margin-bottom: 2rem; }

.dw-hidden { display: none; }
.dw-visible { display: block; }

/* Grid */
.dw-grid-qx7lm {
  display: grid;
  gap: 1.5rem;
}

.dw-grid-qx7lm.col-2 { grid-template-columns: repeat(2, 1fr); }
.dw-grid-qx7lm.col-3 { grid-template-columns: repeat(3, 1fr); }
.dw-grid-qx7lm.col-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .dw-grid-qx7lm.col-2,
  .dw-grid-qx7lm.col-3,
  .dw-grid-qx7lm.col-4 {
    grid-template-columns: 1fr;
  }
}

/* Flex */
.dw-flex-p8v1n {
  display: flex;
}

.dw-flex-p8v1n.wrap { flex-wrap: wrap; }
.dw-flex-p8v1n.center { align-items: center; justify-content: center; }
.dw-flex-p8v1n.between { justify-content: space-between; }
.dw-flex-p8v1n.gap-2 { gap: 1rem; }
.dw-flex-p8v1n.gap-3 { gap: 1.5rem; }

/* Notification */
.dw-notify-9p2v8 {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--dw-brown);
  color: var(--dw-cream);
  z-index: 9999;
  animation: dwSlideIn 0.3s ease;
}

@keyframes dwSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
