@import 'https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css';

:root {
  --kitchen-navy: #1e3a8a;
  --kitchen-blue: #3b82f6;
  --kitchen-warm-gray: #6b7280;
  --kitchen-light-gray: #f9fafb;
  --kitchen-accent: #059669;
  --kitchen-dark: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--kitchen-dark);
  background-color: #ffffff;
}

.kitchen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.kitchen-hero-section {
  background: linear-gradient(135deg, var(--kitchen-navy) 0%, var(--kitchen-blue) 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.kitchen-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.8);
  z-index: 1;
}

.kitchen-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.kitchen-btn-primary {
  background: linear-gradient(135deg, var(--kitchen-accent) 0%, #047857 100%);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 44px;
  line-height: 1.5;
}

.kitchen-btn-primary:hover {
  background: linear-gradient(135deg, #047857 0%, var(--kitchen-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.kitchen-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 44px;
  line-height: 1.5;
}

.kitchen-btn-secondary:hover {
  background: white;
  color: var(--kitchen-navy);
  transform: translateY(-2px);
}

.kitchen-btn-secondary-light {
  background: transparent;
  color: var(--kitchen-accent);
  border: 2px solid var(--kitchen-accent);
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 44px;
  line-height: 1.5;
}

.kitchen-btn-secondary-light:hover {
  background: var(--kitchen-accent);
  color: white;
  transform: translateY(-2px);
}

.kitchen-service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.kitchen-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.kitchen-testimonial-card {
  background: var(--kitchen-light-gray);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.kitchen-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 2rem;
  font-size: 4rem;
  color: var(--kitchen-blue);
  font-family: serif;
  line-height: 1;
}

.kitchen-contact-form {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.kitchen-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--kitchen-dark);
}

.kitchen-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
  color: var(--kitchen-dark);
}

.kitchen-form-input:focus {
  outline: none;
  border-color: var(--kitchen-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.kitchen-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.kitchen-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.kitchen-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--kitchen-navy);
  text-decoration: none;
}

.kitchen-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.kitchen-nav-link {
  text-decoration: none;
  color: var(--kitchen-warm-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.kitchen-nav-link:hover,
.kitchen-nav-link.active {
  color: var(--kitchen-navy);
}

.kitchen-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--kitchen-navy);
}

.kitchen-footer {
  background: var(--kitchen-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.kitchen-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.kitchen-footer-section h3 {
  color: var(--kitchen-blue);
  margin-bottom: 1rem;
}

.kitchen-footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kitchen-footer-section a:hover {
  color: white;
}

.kitchen-footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-banner-title {
  font-weight: 700;
  color: var(--kitchen-navy);
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  color: var(--kitchen-warm-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  flex: 1;
  min-width: 120px;
}

.cookie-accept-btn {
  background: var(--kitchen-accent);
  color: white;
  border: none;
}

.cookie-accept-btn:hover {
  background: #047857;
}

.cookie-decline-btn {
  background: transparent;
  color: var(--kitchen-warm-gray);
  border: 2px solid #e5e7eb;
}

.cookie-decline-btn:hover {
  background: var(--kitchen-light-gray);
}

.kitchen-section {
  padding: 5rem 0;
}

.kitchen-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kitchen-navy);
  margin-bottom: 1rem;
}

.kitchen-section-subtitle {
  text-align: center;
  color: var(--kitchen-warm-gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.kitchen-price-tag {
  background: var(--kitchen-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
}

.kitchen-icon {
  width: 3rem;
  height: 3rem;
  background: var(--kitchen-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .kitchen-nav-menu {
    display: none;
  }
  
  .kitchen-mobile-menu-btn {
    display: block;
  }
  
  .kitchen-hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .kitchen-section {
    padding: 3rem 0;
  }
  
  .kitchen-section-title {
    font-size: 2rem;
  }
  
  .kitchen-container {
    padding: 0 1rem;
  }
  
  .kitchen-contact-form {
    padding: 1.5rem;
  }
  
  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .kitchen-grid {
    grid-template-columns: 1fr;
  }
  
  .kitchen-service-card {
    padding: 1.5rem;
  }
  
  .kitchen-footer-content {
    grid-template-columns: 1fr;
  }
}

.kitchen-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.kitchen-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong,
.text-white b,
.text-light strong,
.text-light b {
  color: inherit;
}