:root {
  --primary-forest: #2C5F2D;
  --primary-dark: #1a3a1b;
  --secondary-slate: #6B7280;
  --accent-gold: #D4AF37;
  --light-cream: #F9FAFB;
  --dark-charcoal: #1F2937;
  --neutral-warm: #F3F4F6;
}

* {
  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(--dark-charcoal);
  background-color: white;
}

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

.hero-gradient {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(26, 58, 27, 0.9) 100%);
}

.service-card {
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 44px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #c29b2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 44px;
  border: 2px solid white;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary-forest);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-forest);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 44px;
  border: 2px solid var(--primary-forest);
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--primary-forest);
  color: white;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 9999;
  max-width: 500px;
  display: none;
}

.cookie-consent-banner.active {
  display: block;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.overlay-dark {
  background: rgba(0, 0, 0, 0.5);
}

.overlay-light {
  background: rgba(255, 255, 255, 0.9);
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--dark-charcoal);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-charcoal);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  /*background: var(--primary-forest);*/
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.language-switcher:hover {
  /* background: var(--accent-gold); */
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-forest);
  z-index: 9998;
  padding: 80px 24px 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }

  .btn-primary, .btn-secondary, .btn-outline {
    padding: 10px 24px;
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }
}

.section-spacing {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 50px 0;
  }
}

.form-success {
  display: none;
  background: #10b981;
  color: white;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-success.active {
  display: block;
}
