@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FAF7F2;
  --dusty-rose: #D4A5A0;
  --dusty-rose-light: #E8C9C5;
  --dusty-rose-dark: #B88A86;
  --sage: #A8B5A0;
  --sage-light: #C8D4C0;
  --warm-dark: #2C2017;
  --warm-gray: #6B5F54;
  --warm-light: #F5EFE8;
  --shadow: rgba(44, 32, 23, 0.08);
  --shadow-strong: rgba(44, 32, 23, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--warm-dark);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--warm-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--warm-gray);
}

a {
  color: var(--dusty-rose-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dusty-rose);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--dusty-rose);
  color: white;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
  background-color: var(--dusty-rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
  color: white;
}

.btn-secondary {
  background-color: var(--sage);
  color: white;
}

.btn-secondary:hover {
  background-color: #95A48D;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--warm-light);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--cream);
}

.section-white {
  background-color: white;
}

.section-dark {
  background-color: var(--warm-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Card Styles */
.card {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px var(--shadow-strong);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--dusty-rose-dark);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--warm-gray);
  border-bottom: 1px solid rgba(212, 165, 160, 0.15);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dusty-rose);
  font-weight: 600;
  font-size: 1.2rem;
}

/* Image Section */
.image-section {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* Form Styles */
.form-section {
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--sage-light) 100%);
  padding: 5rem 0;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px var(--shadow-strong);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--warm-dark);
  font-size: 0.95rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(212, 165, 160, 0.2);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--warm-dark);
  background-color: var(--cream);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--dusty-rose);
  background-color: white;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* FAQ Styles */
.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--warm-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--warm-light);
}

.faq-question:after {
  content: "+";
  font-size: 1.5rem;
  color: var(--dusty-rose);
  transition: transform 0.3s ease;
}

.faq-question.active:after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background-color: var(--warm-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
}

.footer-section h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dusty-rose-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--warm-dark);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px var(--shadow-strong);
  z-index: 1000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.cookie-text {
  font-size: 0.95rem;
  flex: 1;
}

.cookie-text a {
  color: var(--dusty-rose-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.75rem 2rem;
  background-color: var(--dusty-rose);
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.btn-cookie:hover {
  background-color: var(--dusty-rose-dark);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.success-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.success-content {
  position: relative;
  z-index: 2;
  background: white;
  padding: 4rem 3rem;
  border-radius: 4px;
  box-shadow: 0 12px 48px var(--shadow-strong);
  text-align: center;
  max-width: 600px;
  margin: 2rem;
}

.success-content h1 {
  color: var(--dusty-rose-dark);
  margin-bottom: 1.5rem;
}

.success-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
  background-color: white;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-content h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--dusty-rose);
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.legal-info {
  background-color: var(--warm-light);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.legal-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  section {
    padding: 6rem 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}
