/* Header */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(254, 250, 224, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-color);
  transition: none;
}

.header-area.scrolled {
  background: rgba(254, 250, 224, 1);
  box-shadow: 0 4px 20px rgba(40, 54, 24, 0.1);
}

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

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--accent);
  color: white;
}

.header-phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: none;
}

.header-phone-cta:hover {
  background: var(--accent-hover);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: none;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(254, 250, 224, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100vh);
    transition: none;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-phone-cta {
    display: none;
  }
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: none;
}

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

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 1rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: none;
}

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

/* Cards */
.content-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(40, 54, 24, 0.1);
  transition: none;
  position: relative;
  overflow: hidden;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(40, 54, 24, 0.15);
}

.service-card-item {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: none;
  position: relative;
  overflow: hidden;
}

.service-card-item:hover {
  transform: perspective(1000px) rotateY(5deg);
  box-shadow: 0 16px 48px rgba(40, 54, 24, 0.2);
}

.service-card-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.team-member-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: none;
}

.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(40, 54, 24, 0.15);
}

.team-member-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--border-color);
}

/* Forms */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(40, 54, 24, 0.1);
}

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

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

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.25rem;
  transform: scale(1.2);
}

/* Footer */
.footer-area {
  background: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(221, 161, 94, 0.05) 0%,
    transparent 50%,
    rgba(188, 108, 37, 0.05) 100%
  );
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--accent);
}

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

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

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.forest-atmosphere-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: none;
}

.forest-atmosphere-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Cookie Banner */
.gdpr-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(40, 54, 24, 0.2);
  max-width: 350px;
  display: none;
}

.gdpr-popup.show {
  display: block;
}

.gdpr-popup p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.gdpr-popup button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: none;
}

.gdpr-popup button:hover {
  background: var(--accent-hover);
}