@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5F1ED;
  --beige: #D4C5B9;
  --terra: #A08674;
  --terra-dark: #8B7355;
  --rose-pale: #D4A89F;
  --rose-dark: #B8857A;
  --black-deep: #2A2420;
  --dark-bg: #3D3530;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --radius: 16px;
  --radius-pill: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--black-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: var(--terra-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--rose-pale);
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

input, textarea, select {
  font-family: var(--font-sans);
  border: 1px solid rgba(212, 165, 159, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: rgba(245, 241, 237, 0.6);
  color: var(--black-deep);
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--rose-pale);
  box-shadow: 0 0 0 3px rgba(212, 165, 159, 0.1);
}

input::placeholder {
  color: var(--terra);
  opacity: 0.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-pale), var(--terra));
  color: white;
  box-shadow: 0 8px 25px rgba(212, 165, 159, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 165, 159, 0.3);
}

.btn-secondary {
  background: rgba(212, 165, 159, 0.1);
  color: var(--terra-dark);
  border: 1px solid var(--rose-pale);
}

.btn-secondary:hover {
  background: var(--rose-pale);
  color: white;
}

.card {
  background: rgba(245, 241, 237, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 165, 159, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
}

.error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.success {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid #2e7d32;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 1rem;
  }
}