/* ========================================
   Christine Kardos - Beauty Point
   Modern CSS - 2026
   ======================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #8B6F4E;
  --color-primary-light: #B8976A;
  --color-primary-dark: #6B5438;
  --color-accent: #D4A96A;
  --color-bg: #FDFBF8;
  --color-bg-alt: #F5F0EB;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,111,78,0.1);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-links .external-icon { font-size: 0.65em; opacity: 0.4; margin-left: 3px; vertical-align: super; }

.nav-links .btn-nav {
  background: var(--color-primary-light);
  color: var(--color-white);
  padding: 8px 20px;
}

.nav-links .btn-nav:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animated X when open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { z-index: 2; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image::before {
  display: none;
  z-index: -1;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========================================
   Sections
   ======================================== */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto;
  border-radius: 2px;
}

/* About Section */
.about-bg { background: var(--color-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
}

.about-image.with-shadow img {
  box-shadow: var(--shadow-md);
}

.about-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
}

/* Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(139,111,78,0.08);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ========================================
   Home Carousel (Einblicke)
   ======================================== */
.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel .gallery-item {
  flex: 0 0 280px;
  min-width: 280px;
  max-width: 280px;
  height: 280px;
  aspect-ratio: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.carousel-btn:hover { opacity: 1; background: white; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.carousel-btn-left { left: -16px; }
.carousel-btn-right { right: -16px; }

@media (max-width: 768px) {
  .carousel .gallery-item { flex: 0 0 220px; min-width: 220px; max-width: 220px; height: 220px; }
  .carousel-btn-left { left: 4px; }
  .carousel-btn-right { right: 4px; }
}

/* ========================================
   Gallery
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay span {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 4px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ========================================
   Motto / CTA Banner
   ======================================== */
.motto-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  text-align: center;
}

.motto-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.motto-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.motto-section .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

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

/* ========================================
   Contact Form
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-grid > div:last-child {
  display: flex;
  flex-direction: column;
}

.contact-grid > div:last-child .map-container {
  flex: 1;
  min-height: 200px;
  max-height: 300px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group label .required { color: var(--color-accent); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d8cf;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139,111,78,0.15);
}

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

.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 6px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
}

.radio-group input[type="radio"] { accent-color: var(--color-primary); }

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139,111,78,0.08);
}

a.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-bg-alt);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
  margin: 0 -16px;
  border-radius: 8px;
}

a.contact-info-item:hover {
  background: var(--color-bg-alt);
  color: inherit;
}

a.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-weight: 600;
  color: var(--color-text);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer p { font-size: 0.9rem; line-height: 1.8; }

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

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover { color: var(--color-white); }

/* ========================================
   Message Banner (for form responses)
   ======================================== */
.message-banner {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ========================================
   Page Header (for subpages)
   ======================================== */
.page-header {
  margin-top: 72px;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.page-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ========================================
   WKO Badge
   ======================================== */
.wko-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 900;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  transition: opacity var(--transition);
  opacity: 0.8;
}

.wko-badge:hover { opacity: 1; }
.wko-badge img { height: 24px; width: auto; }

/* ========================================
   Responsive
   ======================================== */
/* Mobile Menu Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-overlay.open { display: block; }

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100dvh;
    background: var(--color-white);
    padding: 0;
    padding-top: 80px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 0;
    transition: right 0.3s ease;
    overflow-y: auto;
    list-style: none;
  }

  .nav-links.open { right: 0; }

  .nav-toggle { display: flex; z-index: 1001; }

  .nav-links li {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-bg-alt);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links li a,
  .nav-links li a.active,
  .nav-links li a:hover {
    display: block;
    padding: 18px 28px;
    font-size: 1.05rem;
    border-radius: 0;
    color: var(--color-text);
    background: transparent;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    background: var(--color-bg-alt);
    color: var(--color-primary);
  }

  .nav-links li:last-child {
    margin-top: 8px;
    padding: 8px 20px 20px;
    border-bottom: none;
  }

  .nav-links li:last-child .btn-nav,
  .nav-links li:last-child .btn-nav:hover {
    display: block;
    text-align: center;
    background: var(--color-primary-light);
    color: var(--color-white);
    border-radius: 10px;
    padding: 14px 28px;
  }

  .nav-links li:last-child .btn-nav:hover {
    background: var(--color-primary);
  }

  .hero { min-height: auto; padding: 40px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-subtitle { margin: 0 auto 24px; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 280px; }
  .hero-image::before { display: none; }
  .btn-group { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { text-align: center; }
  .about-image img { max-width: 300px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }

  section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr !important; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; justify-content: center; }
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 24px;
  border-top: 2px solid var(--color-accent);
}

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid #ddd;
}

.cookie-btn-reject:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: white;
}

.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .whatsapp-btn { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }
}

/* ========================================
   Öffnungszeiten
   ======================================== */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-top: 8px;
}

.hours-badge strong { color: var(--color-primary-dark); }

/* ========================================
   Scroll Animations
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
