/* LeeFurnRestor Custom Styles */

/* Custom Colors */
:root {
  --rich-brown: #3E2723;
  --warm-brown: #5D4037;
  --golden-amber: #FFA726;
  --warm-cream: #FFF8E1;
  --amber-600: #FB8C00;
}

.text-rich-brown { color: var(--rich-brown); }
.text-warm-brown { color: var(--warm-brown); }
.text-golden-amber { color: var(--golden-amber); }
.bg-rich-brown { background-color: var(--rich-brown); }
.bg-warm-brown { background-color: var(--warm-brown); }
.bg-golden-amber { background-color: var(--golden-amber); }
.bg-warm-cream { background-color: var(--warm-cream); }
.bg-amber-600 { background-color: var(--amber-600); }
.border-golden-amber { border-color: var(--golden-amber); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Custom Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--golden-amber), var(--amber-600));
  color: var(--rich-brown);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 167, 38, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--rich-brown);
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid var(--rich-brown);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--rich-brown);
  color: white;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--golden-amber);
  box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

/* Cookie Consent Styling */
.cookie-consent-banner {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-banner button {
  white-space: nowrap;
  font-size: 14px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .cookie-consent-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--golden-amber);
  outline-offset: 2px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .text-gray-300 { color: #D1D5DB; }
  .text-gray-400 { color: #9CA3AF; }
  .text-gray-600 { color: #4B5563; }
  .text-gray-700 { color: #374151; }
}