/* styles.css - Dierenzorg versie - exact dezelfde stijl als andere pagina's */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --dark-brown: #463E31;
  --accent: #8b7355;
  --light-brown: #a08c70;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 50px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

body {
  background-color: var(--white);
  color: #333;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--dark-brown);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.logo img {
  height: 60px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* Hero Section */
.hero {
  padding: 60px 0 100px;
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139,115,85,0.03) 0%, rgba(255,255,255,0) 70%);
  animation: rotateBg 30s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 52px;
  color: var(--dark-brown);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--light-brown));
  border-radius: 3px;
}

.accent-text {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Category Hero Layout */
.category-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 20px auto 0;
  position: relative;
  z-index: 2;
}

/* Image Wrapper - Modern rechthoekig frame */
.image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.hero-image.modern-frame {
  width: 420px;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.hero-image.modern-frame:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 35px 55px rgba(0, 0, 0, 0.2);
}

.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(139,115,85,0.2), transparent);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-wrapper:hover .image-glow {
  opacity: 1;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--accent), var(--light-brown));
  opacity: 0.15;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover::before {
  opacity: 0.3;
}

.category-hero-text {
  flex: 1;
  text-align: left;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.category-hero-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
}

.category-hero-text .lead {
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.category-hero-text strong {
  color: var(--dark-brown);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.category-hero-text strong::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.category-hero-text p:hover strong::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 900;
  transition: opacity 0.4s ease, transform 0.3s ease;
  padding: 12px 45px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 80px;
  border: 1px solid rgba(139, 115, 85, 0.3);
  box-shadow: 0 5px 25px rgba(139, 115, 85, 0.2);
  min-width: 220px;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-3px);
  background: white;
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.3);
}

.scroll-text {
  font-size: 15px;
  color: var(--dark-brown);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.scroll-arrow {
  position: relative;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2px;
}

.scroll-arrow i {
  color: var(--accent);
  font-size: 20px;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow .second-arrow {
  animation: scrollBounce 2s infinite 0.3s;
  margin-top: -12px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  40% { transform: translateY(-8px); opacity: 1; }
  60% { transform: translateY(-4px); opacity: 0.8; }
}

.scroll-indicator.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

/* FLOATING ACTION BUTTON - DE ENIGE KNOP */
.fab-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--dark-brown) 0%, #5a4e3f 100%);
  padding: 14px 24px 14px 20px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(70, 62, 49, 0.35);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.fab-button:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 35px rgba(70, 62, 49, 0.45);
  background: linear-gradient(135deg, var(--accent) 0%, var(--dark-brown) 100%);
}

.fab-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fab-icon i {
  font-size: 20px;
  color: white;
}

.fab-icon i.fa-heart {
  color: #ff6b6b;
  font-size: 18px;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.fab-text {
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.fab-arrow {
  color: white;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.fab-button:hover .fab-arrow {
  transform: translateX(5px);
}

/* Pulse animatie voor FAB bij eerste bezoek */
@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 0 8px 25px rgba(70, 62, 49, 0.35);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 12px rgba(139, 115, 85, 0.3);
    transform: scale(1.05);
  }
}

.fab-button.pulse {
  animation: pulseGlow 1s ease 3;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #3a3227 100%);
  color: var(--light-gray);
  padding: 60px 0 30px;
  width: 100%;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.footer-column {
  max-width: 700px;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
}

.footer-logo img {
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-logo img:hover {
  transform: scale(1.05) rotate(5deg);
}

.footer-logo h3 {
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 14px;
}

.contact-info strong {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 25px;
  justify-content: center;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  transition: var(--transition);
  font-size: 18px;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-4px) scale(1.05);
}

.legal-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.legal-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--accent);
}

.copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-image.modern-frame {
    width: 360px;
    height: 360px;
  }
  
  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 100px;
  }
  
  .category-hero {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }
  
  .category-hero-text {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-image.modern-frame {
    width: 300px;
    height: 300px;
  }
  
  .scroll-indicator {
    bottom: 80px;
    padding: 10px 35px;
    min-width: 190px;
  }
  
  .fab-button {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px 12px 18px;
  }
  
  .fab-icon i {
    font-size: 18px;
  }
  
  .fab-text {
    font-size: 13px;
  }
  
  .fab-arrow {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-image.modern-frame {
    width: 260px;
    height: 260px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .scroll-indicator {
    bottom: 70px;
    padding: 8px 25px;
  }
  
  .scroll-text {
    font-size: 13px;
  }
  
  .fab-button {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px 10px 14px;
  }
  
  .fab-text {
    font-size: 12px;
  }
}