@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';

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

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

.craftsman-shadow {
  box-shadow: 0 10px 25px -5px rgba(52, 150, 96, 0.1), 0 4px 6px -2px rgba(52, 150, 96, 0.05);
}

.wood-texture-overlay {
  background: linear-gradient(135deg, rgba(212, 135, 77, 0.1) 0%, rgba(52, 150, 96, 0.05) 100%);
}

.hero-wood-gradient {
  background: linear-gradient(135deg, #f9ede1 0%, #e8bf98 50%, #d4874d 100%);
}

.service-card-hover {
  transition: all 0.3s ease;
}

.service-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(52, 150, 96, 0.2);
}

.craftsman-btn {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #349660 0%, #26794c 100%);
}

.craftsman-btn:hover {
  background: linear-gradient(135deg, #26794c 0%, #1f603e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(52, 150, 96, 0.3);
}

.wood-accent-line {
  background: linear-gradient(90deg, #d4874d 0%, #349660 50%, #d4874d 100%);
  height: 3px;
}

.testimonial-card {
  background: linear-gradient(135deg, #fefdf9 0%, #fefbf0 100%);
  border-left: 4px solid #349660;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1f603e 0%, #349660 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -5px rgba(31, 96, 62, 0.3);
  max-width: 400px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.cookie-consent-banner.hidden {
  transform: translateX(450px);
  opacity: 0;
}

.cookie-settings-panel {
  background: white;
  color: #1f603e;
  border-radius: 8px;
  margin-top: 15px;
  padding: 15px;
  display: none;
}

.cookie-settings-panel.active {
  display: block;
}

.gallery-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -10px rgba(52, 150, 96, 0.2);
}

.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: #349660;
}

.process-step:last-child::after {
  display: none;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.expandable-content.expanded {
  max-height: 2000px;
  opacity: 1;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: none;
  }
  
  .cookie-consent-banner.hidden {
    transform: translateY(200px);
    opacity: 0;
  }
}