/**
 * HÄLSA DENTAL KLINIK - Main Stylesheet (Cleaned)
 * Version: 1.0.3
 * Notes:
 *  - Removed duplicate/conflicting rules (especially quick-contact blocks).
 *  - Desktop header quick-contact visible only on desktop.
 *  - Mobile floating quick-contact visible only on mobile (bottom-right, horizontal).
 *  - Kept original look-and-feel; no design changes, just cleanup & predictability.
 */

/* =========================
   CSS Variables & Resets
   ========================= */
:root {
  --bg-color: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-section: #FAFBFC;
  --logo-color: #537047;
  --logo-light: #6B8361;
  --text-color: #2C2C2C;
  --text-light: #6B6B6B;
  --accent-color: #537047;
  --card-bg: #FFFFFF;
  --card-hover: #F8F9FA;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Prevent body scroll when popup is open */
body.no-scroll {
  overflow: hidden !important;
}
html.no-scroll {
  overflow: hidden !important;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* =========================
   Header
   ========================= */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.70rem 0;
}

/* Header logo (colored SVG via mask) */
.header-logo-colored {
  width: 150px;
  height: 45px;
  background-color: var(--logo-color);
  -webkit-mask: url("../images/hd_logo_1.svg") no-repeat center / contain;
  mask: url("../images/hd_logo_1.svg") no-repeat center / contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Header logo visibility on scroll */
.logo { opacity: 0; visibility: hidden; transition: var(--transition); }
.show-header-logo .logo { opacity: 1; visibility: visible; }

.logo-section { display: flex; align-items: center; gap: 16px; }

.logo svg { width: 42px; height: 42px; fill: var(--logo-color); transition: var(--transition); }
.logo:hover svg { transform: rotate(5deg) scale(1.05); }

.clinic-name { font-size: 1.4rem; font-weight: 500; color: var(--logo-color); letter-spacing: 0.08em; }

/* Language switch button */
.lang-switch {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(83, 112, 71, 0.2);
  background: transparent;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem; font-weight: 400;
  color: var(--logo-color);
}
.lang-switch:hover {
  background: var(--logo-color); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.lang-switch svg { transition: var(--transition); }
.lang-switch:hover svg { transform: rotate(180deg); }

/* =========================
   Hero Logo
   ========================= */
#heroLogo { padding: 0.1rem 0 0.1rem; }

.hero-logo-wrap { display: flex; align-items: center; justify-content: center; }

.hero-logo-colored {
  width: clamp(400px, 50vw, 600px);
  height: clamp(200px, 5vw, 400px);
  background-color: #537047;
  -webkit-mask: url("../images/hd_logo_1.svg") no-repeat center / contain;
  mask: url("../images/hd_logo_1.svg") no-repeat center / contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
  user-select: none; -webkit-user-drag: none;

  /* Draw & reveal animation */
  opacity: 0; transform: scale(0.9);
  animation: drawReveal 1.5s ease-out forwards; animation-delay: 0.3s;
  position: relative;
}

@keyframes drawReveal {
  0% { opacity: 0; transform: scale(0.9); filter: blur(10px) drop-shadow(0 6px 18px rgba(0,0,0,.08)); }
  40% { opacity: 1; transform: scale(1.05); filter: blur(5px) drop-shadow(0 8px 24px rgba(0,0,0,.12)); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 6px 18px rgba(0,0,0,.08)); }
}

/* =========================
   Sections & Headings
   ========================= */
section { padding: 5rem 0; position: relative; }
section:nth-child(even) { background: var(--bg-section); }

h2 {
  text-align: center; font-size: 2.5rem; color: var(--accent-color);
  margin-bottom: 3rem; position: relative; display: inline-block; width: 100%;
}
h2::after {
  content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px; background: var(--logo-light); opacity: 0.5;
}

/* =========================
   About
   ========================= */
.about-card {
  background: #fff; border-radius: 20px; padding: 3rem; box-shadow: var(--shadow-md);
  max-width: 900px; margin: 0 auto; transition: var(--transition);
  position: relative; overflow: hidden; border: 1px solid var(--border-light);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 2rem;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: -webkit-linear-gradient(left, var(--logo-color), var(--logo-light));
  background: linear-gradient(90deg, var(--logo-color), var(--logo-light));
  -webkit-transform: scaleX(0); transform: scaleX(0); 
  -webkit-transition: var(--transition); transition: var(--transition); 
  -webkit-transform-origin: left; transform-origin: left;
}
.about-card:hover::before { -webkit-transform: scaleX(1); transform: scaleX(1); }
.about-card:hover { -webkit-transform: translateY(-4px); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.about-content {
  -webkit-box-flex: 1; -ms-flex: 1; flex: 1;
}

.about-image {
  -webkit-box-flex: 0; -ms-flex: 0 0 220px; flex: 0 0 220px;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end;
}

.about-image img {
  max-width: 100%;
  max-height: 280px;
  height: auto;
  -o-object-fit: contain; object-fit: contain;
  -o-object-position: bottom; object-position: bottom;
}

.about-card h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--text-color); }
.about-card p { color: var(--text-light); line-height: 1.9; font-size: 1.05rem; }

/* Director button (also reused) */
.director-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 1.5rem; padding: 12px 24px;
  background: var(--logo-color); color: #fff;
  border: none; border-radius: 24px; font-size: 0.95rem; font-weight: 400;
  cursor: pointer; transition: var(--transition);
}
.director-btn:hover { background: var(--logo-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.director-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

/* Stack a second director button on new line without breaking flex */
.director-btn + .director-btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.75rem;
}

/* =========================
   Opening Hours
   ========================= */
.hours-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.hours-table {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  overflow: hidden; max-width: 800px; margin: 0 auto; padding-bottom: 1rem;
  border: 1px solid var(--border-light);
}
.hours-table table { width: 100%; border-collapse: collapse; min-width: 600px; }

.hours-table th, .hours-table td {
  padding: 1.25rem 1rem; text-align: center; border: 1px solid var(--border-light);
}
.hours-table th {
  background: var(--bg-light); font-weight: 500; color: var(--logo-color); font-size: 1.1rem;
}
.hours-table th:first-child, .hours-table td:first-child {
  text-align: left; padding-left: 1.5rem;
}
.hours-table td:first-child { font-weight: 400; color: var(--text-color); }
.hours-table tbody tr:hover { background: var(--card-hover); }

.schedule-symbol { font-size: 1.5rem; line-height: 1; }
.schedule-open { color: var(--logo-color); }
.schedule-closed { color: #DC2626; }

.schedule-note {
  margin-top: 1.5rem; padding: 1rem 1.5rem; background: var(--bg-light);
  border-radius: 12px; text-align: center; color: var(--text-light);
  font-size: 0.95rem; border: 1px solid var(--border-light);
}
.schedule-legend {
  display: flex; justify-content: center; gap: 2rem;
  margin-top: 1rem; padding-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-light);
}
.schedule-legend-item { display: flex; align-items: center; gap: 0.5rem; }

/* Holiday / special closures */
.hours-note {
  display: -webkit-flex; display: flex; -webkit-justify-content: center; justify-content: center; 
  -webkit-align-items: center; align-items: center;
  text-align: center;
}
.hours-note-text {
  margin-left: -1.75rem;
  font-size: 0.95rem; line-height: 1.5; color: var(--text-light);
}

.hours-holiday {
  display: -webkit-flex; display: flex; -webkit-justify-content: center; justify-content: center; 
  -webkit-align-items: center; align-items: center;
  margin-top: 1rem; padding: 0.75rem 0; border-top: 1px dashed rgba(0,0,0,0.1);
  text-align: center;
}
.hours-holiday-text {
  margin-left: 1.75rem; margin-right: 1.75rem;
  font-size: 0.95rem; line-height: 1.5; font-style: italic; color: #b33;
}

/* =========================
   Treatments
   ========================= */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}

.treatment-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.25rem;
  transition: var(--transition); cursor: pointer; border: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.treatment-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--logo-color), var(--logo-light));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.treatment-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(83,112,71,0.15);
}
.treatment-card:hover::after { transform: scaleX(1); }

.treatment-icon {
  width: 56px; height: 56px; background: var(--bg-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition); border: 1px solid var(--border-light);
}
.treatment-card:hover .treatment-icon {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, var(--logo-light), var(--logo-color));
  border-color: transparent;
}
.treatment-icon svg { width: 36px; height: 36px; stroke: var(--accent-color); transition: var(--transition); }
.treatment-card:hover .treatment-icon svg { stroke: #fff; color: #fff; }

.treatment-card h3 { font-size: 1.2rem; margin-bottom: 0; color: var(--text-color); font-weight: 500; }

/* Pricing button under treatments */
.treatment-pricing { margin-top: 2rem; text-align: center; }
.pricing-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--logo-color); color: #fff;
  border: none; border-radius: 28px; font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.pricing-btn:hover { background: var(--logo-light); transform: translateY(-2px); }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.95rem; }
.pricing-table th, .pricing-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #ddd; }
.pricing-table th { background: var(--bg-light); font-weight: 600; }
.pricing-table tr:hover td { background: rgba(0,0,0,0.03); }

/* Pricing Categories */
.pricing-categories { margin-top: 1rem; }
.pricing-category { margin-bottom: 1.5rem; }
.pricing-category:last-child { margin-bottom: 0; }
.pricing-category-title {
  font-size: 1rem; font-weight: 600; color: var(--logo-color);
  padding: 0.5rem 0; border-bottom: 2px solid var(--logo-color);
  margin-bottom: 0.5rem;
}
.pricing-item {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #eee;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item-name { color: var(--text-color); }
.pricing-item-price { font-weight: 500; color: var(--text-color); white-space: nowrap; }

/* =========================
   Gallery
   ========================= */
.gallery-container { position: relative; max-width: 900px; margin: 0 auto; }
.gallery-wrapper {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; border: 1px solid var(--border-light);
  height: 500px; background: var(--bg-light);
}
.gallery-image {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  cursor: pointer; transition: var(--transition);
}

.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.95); border: 1px solid var(--border-light);
  border-radius: 50%; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); opacity: 0.8; box-shadow: var(--shadow-md);
}
.gallery-btn:hover { opacity: 1; transform: translateY(-50%) scale(1.1); box-shadow: var(--shadow-lg); }
.gallery-btn.prev { left: 2rem; } .gallery-btn.next { right: 2rem; }

.gallery-dots { display: flex; justify-content: center; gap: 12px; margin-top: 2rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #D1D5DB; border: none; cursor: pointer; transition: var(--transition); }
.dot:hover { transform: scale(1.3); background: var(--logo-light); }
.dot.active { width: 36px; border-radius: 5px; background: var(--logo-color); }

/* Gallery inside popups - smaller height */
.gallery--popup .gallery-wrapper { height: 280px; background: var(--bg-light); }
.gallery--popup .gallery-image { object-fit: contain; }
.gallery--popup .gallery-btn { width: 40px; height: 40px; }
.gallery--popup .gallery-btn.prev { left: 0.5rem; }
.gallery--popup .gallery-btn.next { right: 0.5rem; }
.gallery--popup .gallery-dots { margin-top: 1rem; gap: 8px; }
.gallery--popup .dot { width: 8px; height: 8px; }
.gallery--popup .dot.active { width: 24px; }

/* Image fade helper */
#galleryImage { display: block; opacity: 1; transition: opacity 0.2s ease-out; }
#galleryImage.is-fading { opacity: 0; }

/* =========================
   Map
   ========================= */
.map-container {
  background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  max-width: 900px; margin: 0 auto; border: 1px solid var(--border-light);
}
.map-container iframe {
  width: 100%; height: 450px; border: none; filter: grayscale(20%); transition: var(--transition);
}
.map-container:hover iframe { filter: grayscale(0%); }

a.map-info {
  padding: 2rem; padding-bottom: 1rem; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 12px;
  background: var(--bg-light); border-top: 1px solid var(--border-light);
  text-decoration: none; color: inherit; -webkit-transition: var(--transition); transition: var(--transition);
}
a.map-info:hover { background: #e8f5e9; }
a.map-info svg { stroke: var(--logo-color); -webkit-flex-shrink: 0; flex-shrink: 0; }

.map-note {
  padding: 0 2rem 1.5rem 2rem; padding-left: calc(2rem + 32px);
  background: var(--bg-light); color: var(--text-light); font-size: 0.9rem;
}
.map-note:empty { display: none; }

/* =========================
   Hygiene
   ========================= */
.hygiene-card {
  background: linear-gradient(135deg, #F0F9F1 0%, #F0F7FF 50%, #FFF9F0 100%);
  border-radius: 24px; padding: 3.5rem 2.5rem; box-shadow: var(--shadow-md);
  max-width: 800px; margin: 0 auto; text-align: left; position: relative; overflow: hidden;
  border: 1px solid var(--border-light);
}
.hygiene-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite; pointer-events: none; z-index: 0;
}
@keyframes pulse { 0%,100%{ transform: scale(1); opacity: .5 } 50%{ transform: scale(1.1); opacity: .3 } }

.hygiene-icon { margin-bottom: 2rem; position: relative; z-index: 1; }
.hygiene-icon svg { filter: drop-shadow(0 4px 8px rgba(83,112,71,0.2)); }

.hygiene-card p { font-size: 1.1rem; line-height: 1.9; color: var(--text-color); position: relative; z-index: 1; }
.hygiene-card .hygiene-icon, .hygiene-card p, .hygiene-card .director-btn { position: relative; z-index: 1; }
.hygiene-card .director-btn { margin-top: 1.25rem; }

/* =========================
   Popups
   ========================= */
.popup {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.8); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  z-index: 3000; align-items: center; justify-content: center;
  padding: 2rem; overflow-y: auto;
}
.popup.active { display: flex; animation: fadeIn 0.3s ease-out; }

.popup-content {
  background: #fff; border-radius: 24px; padding: 2.5rem; max-width: 600px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto; animation: slideIn 0.3s ease-out;
}
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg-light); border: none; border-radius: 50%;
  width: 40px; height: 40px; cursor: pointer; display: -webkit-flex; display: flex; 
  -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center;
  -webkit-transition: var(--transition); transition: var(--transition);
  z-index: 10;
}
.popup-close:hover { background: var(--logo-color); -webkit-transform: rotate(90deg); transform: rotate(90deg); }
.popup-close:hover svg { stroke: #fff; }

.popup-header { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-right: 3rem; }
.popup-icon {
  width: 56px; height: 56px; background: var(--bg-light); border-radius: 16px;
  display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; 
  -webkit-justify-content: center; justify-content: center; -webkit-flex-shrink: 0; flex-shrink: 0; border: 1px solid var(--border-light);
}
.popup-icon svg { width: 28px; height: 28px; stroke: var(--logo-color); }

.popup h3 { font-size: 1.8rem; color: var(--text-color); margin-bottom: 0; }
.popup-body { color: var(--text-light); line-height: 1.8; font-weight: 400; }
.popup-body p { margin-bottom: 1rem; font-weight: 400; }

.director-popup .popup-content { text-align: center; padding-top: 3.5rem; }
.director-popup .popup-body { text-align: left; }
.director-photo {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 2rem; overflow: hidden; box-shadow: var(--shadow-lg);
}
.director-photo img { width: 100%; height: 100%; object-fit: cover; }

/* =========================
   Modal (Gallery)
   ========================= */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center;
  padding: 2rem; backdrop-filter: blur(10px);
}
.modal.active { display: flex; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content { 
  max-width: 1200px; width: 100%; max-height: calc(100vh - 100px);
  position: relative; animation: slideIn 0.3s ease-out;
  display: flex; align-items: center; justify-content: center;
}
@keyframes slideIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-image { 
  max-width: 100%; max-height: calc(100vh - 100px); 
  object-fit: contain; border-radius: 12px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
}
.modal-close {
  position: absolute; top: -50px; right: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg) scale(1.1); }
.modal-close svg { stroke: #fff; }

/* =========================
   Footer
   ========================= */
footer {
  text-align: center; padding: 3rem 2rem; color: var(--text-light); font-size: 0.9rem; letter-spacing: 0.05em;
  background: var(--bg-light); border-top: 1px solid var(--border-light);
}

.footer-version {
  font-size: 0.85em;      /* etwas kleiner */
  opacity: 0.5;           /* halbtransparent */
  color: var(--text-light); /* oder eine hellere Farbe, falls definiert */
  margin-bottom: 50px;
}

/* =========================
   Header right: actions cluster
   ========================= */
.header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* =========================
   Quick Contact (desktop & mobile)
   ========================= */

/* Base look for both instances */
.quick-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.qc-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; text-decoration: none;
  background: var(--bg-light); color: var(--logo-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.qc-btn:hover, .qc-btn:focus-visible {
  background: var(--logo-color); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  outline: none;
}

/* Desktop header cluster: visible on desktop, hidden on mobile */
.quick-contact--desktop { display: inline-flex; margin-right: 0.75rem; }
@media (max-width: 768px) {
  .quick-contact--desktop { display: none !important; }
}

/* Mobile floating bar: hidden by default, shown only on mobile (bottom-right, horizontal) */
.quick-contact--mobile { display: none; }
@media (max-width: 768px) {
  .quick-contact--mobile {
    display: flex !important;
    position: fixed !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    left: auto !important; top: auto !important;
    z-index: 99999 !important;
    flex-direction: row !important; /* horizontal layout */
    gap: 12px !important;
    pointer-events: auto !important;
  }
  .quick-contact--mobile .qc-btn {
    width: 56px !important; height: 56px !important;
    position: static !important; border-radius: 9999px !important;
    background: var(--bg-light) !important; color: var(--logo-color) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18) !important;
  }
  .quick-contact--mobile .qc-btn svg {
    width: 22px !important; height: 22px !important;
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
  body { font-size: 16px; } /* prevent zoom on iOS */
  .container { padding: 0 16px; }
  section { padding: 3rem 0; }
  .header-content { padding: 0.75rem 0; }
  .clinic-name { font-size: 1.1rem; letter-spacing: 0.02em; }
  .logo svg { width: 36px; height: 36px; }
  .lang-switch { padding: 8px 16px; font-size: 0.85rem; }

  h2 { font-size: 1.75rem; margin-bottom: 2rem; }

  /* About */
  .about-card { 
    padding: 2rem 1.5rem; 
    -webkit-box-orient: vertical; -webkit-box-direction: normal;
    -ms-flex-direction: column; flex-direction: column;
    text-align: center;
  }
  .about-image {
    -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1;
    -ms-flex: 0 0 auto; flex: 0 0 auto;
    margin-bottom: 1rem;
  }
  .about-image img {
    max-height: 200px;
  }
  .about-card h3 { font-size: 1.4rem; }
  .about-card p { font-size: 1rem; }

  /* Hours */
  .hours-wrapper { margin: 0 -16px; padding: 0 16px; }
  .hours-table { overflow-x: auto; }
  .hours-table table { min-width: 100%; }
  .hours-table th, .hours-table td { padding: 0.75rem 0.5rem; font-size: 0.85rem; }
  .hours-table th { font-size: 0.9rem; }
  .hours-table td:first-child { padding-left: 1rem; font-size: 0.8rem; white-space: nowrap; }
  .schedule-symbol { font-size: 1.2rem; }
  .schedule-note { font-size: 0.85rem; padding: 0.75rem 1rem; }
  .schedule-legend { font-size: 0.8rem; gap: 1rem; margin-bottom: 1rem; }

  /* Popups */
  .popup { padding: 1rem; }
  .popup-content { padding: 2rem 1.5rem; padding-top: 3rem; margin: 0.5rem; max-height: 85vh; }
  .popup-close { top: 0.75rem; right: 0.75rem; }
  .popup h3 { font-size: 1.5rem; }
  .popup-body { font-size: 0.95rem; }
  .popup-header { padding-right: 2.5rem; }
  .director-popup .popup-content { padding-top: 3rem; }
  .director-photo { width: 150px; height: 150px; }
  .director-btn { font-size: 0.9rem; padding: 10px 20px; }

  /* Treatments */
  .treatment-grid { grid-template-columns: 1fr; gap: 1rem; }
  .treatment-card { padding: 1.25rem; }
  .treatment-icon { width: 48px; height: 48px; }
  .treatment-icon svg { width: 24px; height: 24px; }
  .treatment-card h3 { font-size: 1.1rem; }

  /* Gallery */
  .gallery-wrapper { height: 300px; }
  .gallery-btn { width: 44px; height: 44px; opacity: 1; }
  .gallery-btn.prev { left: 0.75rem; }
  .gallery-btn.next { right: 0.75rem; }
  .gallery-btn svg { width: 20px; height: 20px; }

  /* Map */
  .map-container iframe { height: 300px; }
  .map-info { padding: 1.5rem; font-size: 0.9rem; }

  /* Hygiene */
  .hygiene-card { padding: 2.5rem 1.5rem; }
  .hygiene-card p { font-size: 1rem; }

  /* Modal */
  .modal { padding: 1rem; }
  .modal-close { top: 10px; right: 10px; background: rgba(0,0,0,0.5); }
  .modal-image { border-radius: 8px; }

  /* Footer */
  footer { padding: 2rem 1rem; font-size: 0.85rem; }
}

/* Extra small devices */
@media (max-width: 480px) {
  .clinic-name { font-size: 1rem; }
  h2 { font-size: 1.5rem; }

  /* Gallery smaller on small phones */
  .gallery-wrapper { height: 250px; }

  /* Hours fine-tune */
  .hours-table th { font-size: 0.8rem; padding: 0.5rem 0.3rem; }
  .hours-table td { padding: 0.5rem 0.3rem; }
  .hours-table td:first-child { font-size: 0.75rem; }

  /* 2-column treatment grid on small phones (no design change) */
  .treatment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .treatment-card { padding: 0.5rem 0.25rem !important; gap: 0.6rem; }
  .treatment-card svg { width: 28px; height: 28px; }
  .treatment-card h3 { font-size: 1rem; line-height: 1.3; }
  .treatment-card p { font-size: 0.85rem; line-height: 1.4; }

  /* Holiday note tweak */
  .hours-holiday-text { font-size: 0.9rem; }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
  .treatment-card:hover, .about-card:hover, .hour-item:hover { transform: none; }
  .gallery-btn { opacity: 1; }

  /* Larger touch targets */
  .lang-switch { min-height: 44px; min-width: 88px; }
  .gallery-btn { width: 48px; height: 48px; }
  .dot { width: 12px; height: 12px; margin: 4px; }

  /* Prevent text selection on interactive elements */
  .treatment-card, .gallery-btn, .lang-switch, .director-btn, .popup-close {
    -webkit-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent;
  }

  /* Ensure popups scroll smoothly on iOS */
  .popup { -webkit-overflow-scrolling: touch; }
}

/* ===========================
   Burger Menu Styles
   =========================== */

/* Burger button */
.burger-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(83, 112, 71, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 0.75rem;
}

.burger-menu-btn:hover {
  background: var(--logo-color);
  border-color: var(--logo-color);
}

.burger-menu-btn:hover .burger-icon span {
  background: #fff;
}

/* Burger icon */
.burger-icon {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--logo-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* Active state animation */
.burger-menu-btn.active .burger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger-menu-btn.active .burger-icon span:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active .burger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu panel */
.menu-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2001;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.menu-panel.active {
  right: 0;
}

/* Menu header */
.menu-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
}

.menu-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--logo-color);
  letter-spacing: 0.05em;
}

.menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-close:hover {
  background: var(--logo-color);
  border-color: var(--logo-color);
}

.menu-close:hover svg {
  stroke: #fff;
}

/* Menu navigation */
.menu-nav {
  flex: 1;
  padding: 1.5rem 0;
}

.menu-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.menu-nav-item:hover {
  background: var(--bg-light);
  color: var(--logo-color);
  border-left-color: var(--logo-color);
}

.menu-nav-item.active {
  background: rgba(83, 112, 71, 0.08);
  color: var(--logo-color);
  font-weight: 500;
  border-left-color: var(--logo-color);
}

.menu-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Menu footer */
.menu-footer {
  padding: 1.5rem;
  border-top: 1px solid #E5E5E5;
  background: #FAFAFA;
  font-size: 0.85rem;
  color: #6B6B6B;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .menu-panel {
    background: #FFFFFF !important;
  }
  
  .menu-header {
    background: #FFFFFF !important;
  }
  
  .menu-nav {
    background: #FFFFFF !important;
  }
  
  .menu-footer {
    background: #FAFAFA !important;
  }
  
  /* Ensure text remains dark for readability */
  .menu-nav-item {
    background: transparent;
    color: #2C2C2C !important;
  }
  
  .menu-nav-item:hover,
  .menu-nav-item:active {
    background: #F5F5F5 !important;
    color: #537047 !important;
  }
  
  .menu-nav-item.active {
    background: #F0F7F0 !important;
    color: #537047 !important;
  }
  
  .menu-title {
    color: #537047 !important;
  }
  
  /* Fix for menu text visibility on any background */
  .menu-nav-item span {
    background: #FFFFFF;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
  }
}

/* Override any dark mode settings for mobile menu */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
  .menu-panel,
  .menu-panel * {
    background-color: #FFFFFF !important;
  }
  
  .menu-nav-item {
    background: transparent !important;
    color: #2C2C2C !important;
  }
  
  .menu-nav-item span {
    background: #FFFFFF !important;
    color: #2C2C2C !important;
  }
  
  .menu-nav-item:hover span,
  .menu-nav-item:active span {
    color: #537047 !important;
  }
  
  .menu-footer {
    background: #FAFAFA !important;
    color: #6B6B6B !important;
  }
}

/* Dark mode support - menu stays light */
@media (prefers-color-scheme: dark) {
  /* Menu panel maintains light theme */
  .menu-panel {
    background: #FFFFFF;
  }
  
  .menu-header {
    background: #FFFFFF;
    border-bottom-color: #E5E5E5;
  }
  
  .menu-footer {
    background: #FAFAFA;
    border-top-color: #E5E5E5;
    color: #6B6B6B;
  }
  
  .menu-title {
    color: #537047;
  }
  
  .menu-nav-item {
    color: #2C2C2C;
  }
  
  .menu-nav-item:hover {
    background: #F5F5F5;
    color: #537047;
  }
  
  .menu-nav-item.active {
    background: #F0F7F0;
    color: #537047;
  }
  
  .menu-close {
    background: transparent;
    border-color: #E5E5E5;
  }
  
  .menu-close:hover {
    background: #537047;
    border-color: #537047;
  }
  
  .menu-close:hover svg {
    stroke: #fff;
  }
}

/* ===========================
   Additional CSS for Treatment Pages
   =========================== */

/* Force logo visibility on treatment-processes page */
body.treatment-page .logo {
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer;
  transition: transform 0.3s ease;
}

body.treatment-page .header-logo-colored {
  opacity: 1 !important;
  visibility: visible !important;
}

body.treatment-page .logo:hover {
  transform: scale(1.05);
}

/* Ensure logo link is clickable */
.logo-section a.logo {
  display: inline-block;
  text-decoration: none;
}

/* Modal Navigation Enhancement */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0);
    cursor: pointer;
    padding: 2rem 1rem;
    height: 60%;
    width: 15%;
    min-width: 60px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0) 100%);
}

.modal-nav.prev {
    left: 0;
}

.modal-nav.next {
    right: 0;
}

.modal-nav.next:hover {
    background: linear-gradient(270deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0) 100%);
}

.modal-nav svg {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.modal-nav:hover svg {
    opacity: 0.9;
}

.modal-nav:active svg {
    transform: scale(0.9);
}

/* Modal Image Counter */
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal.active:hover .modal-counter {
    opacity: 1;
}

/* Modal dots navigation */
.modal-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active:hover .modal-dots {
    opacity: 1;
}

.modal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.modal-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.modal-dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 24px;
    border-radius: 4px;
}

/* Hide close button when not hovering */
.modal-close {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.active:hover .modal-close {
    opacity: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Smooth image transitions */
.modal-image {
    transition: opacity 0.3s ease;
}

.modal-image.transitioning {
    opacity: 0;
}

/* Touch device adjustments */
@media (hover: none) and (pointer: coarse) {
    .modal-nav svg {
        opacity: 0.5;
    }
    
    .modal-counter,
    .modal-dots {
        opacity: 1;
    }
    
    .modal-close {
        opacity: 1;
    }
}

  .about-buttons {
  display: flex;
  flex-direction: column; /* stapelt untereinander */
  align-items: flex-start; /* oder center für zentriert */
  gap: 0.75rem; /* Abstand zwischen Buttons */
}

/* ===== v1.0.8 Cross‑browser hardening (menu overlay, buttons, text) ===== */
/* Force a uniform white overlay on all devices/browsers (no dark/blur fallbacks) */
.menu-overlay {
  /* Consistent dark translucent scrim with blur across browsers */
  background-color: rgba(0, 0, 0, 0.45) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  backdrop-filter: blur(4px) !important;
  mix-blend-mode: normal !important; /* prevent OS/DM blending */
}

/* Ensure the sliding panel is always white as well */
.menu-panel {
  background-color: #FFFFFF !important;
  mix-blend-mode: normal !important;
}

/* Normalize button sizing across Safari/Chrome/older browsers */
.pricing-btn {
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  line-height: 1; /* Prevent browser-specific extra height */
}

.pricing-btn svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  flex: 0 0 auto;
}

.pricing-btn span {
  display: inline-block;
}

/* Render explicit \n from translations as line breaks when applied via textContent */
[data-i18n][data-multiline="true"] {
  white-space: pre-line;
}
/* ===== end v1.0.8 ===== */

/* ===== Hygiene Swipe Gallery ===== */
.hygiene-gallery {
  overflow-x: auto;           /* enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  margin: 10px 0;
}

.hygiene-gallery-track {
  display: flex;
  gap: 10px;
}

.hygiene-gallery img {
  flex: 0 0 auto;
  width: 120px;        /* adjust size */
  height: 80px;        /* adjust size */
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

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

.hygiene-gallery {
  scroll-snap-type: x mandatory;
}

.hygiene-gallery img {
  scroll-snap-align: start;
}

/* ===================================
   MENU ENHANCEMENTS - CSS ADDITIONS
   Add these styles to your styles.css
   =================================== */

/* Menu section links */
.menu-nav-section {
  position: relative;
}

/* Menu divider */
.menu-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.5rem 1.5rem;
}

/* External link styling */
.menu-nav-external {
  position: relative;
  padding-right: 3rem;
}

.menu-nav-external .external-link-icon {
  position: absolute;
  right: 1.5rem;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: var(--transition);
}

.menu-nav-external:hover .external-link-icon {
  opacity: 1;
  transform: translateX(2px) translateY(-2px);
}

/* ===================================
   ANNOUNCEMENTS SECTION - CSS
   Add to your styles.css file
   =================================== */

/* Announcements Section */
#announcements {
  background: var(--white);
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.announcement-item {
  background: #FFF9EE;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.announcement-item:hover {
  background: #FBF4E6;
  border-color: var(--logo-color);
  box-shadow: 0 4px 12px rgba(83, 112, 71, 0.1);
  transform: translateY(-2px);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.announcement-date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

.announcement-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--white);
  color: var(--logo-color);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.announcement-title {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 400;
}

/* Announcement Popup Specific Styles */
.announcement-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.announcement-popup-date {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

#announcementPopup h3 {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .announcement-item {
    padding: 1.25rem;
  }

  .announcement-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .announcement-date {
    font-size: 0.9rem;
  }

  .announcement-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.875rem;
  }

  .announcement-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .announcements-list {
    gap: 0.875rem;
  }

  .announcement-item {
    padding: 1rem;
  }

  .announcement-title {
    font-size: 0.9rem;
  }
}

/* =========================
   Construction Layout
   ========================= */
.construction-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* =========================
   Logo Styling
   ========================= */
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-logo-colored {
  width: clamp(300px, 50vw, 600px);
  height: clamp(150px, 25vw, 300px);
  background-color: var(--logo-color);
  -webkit-mask: url("../images/hd_logo_1.svg") no-repeat center / contain;
  mask: url("../images/hd_logo_1.svg") no-repeat center / contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
  user-select: none;
  -webkit-user-drag: none;
  
  /* Animation */
  opacity: 0;
  transform: scale(0.9);
  animation: drawReveal 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes drawReveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
  }
  40% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(5px) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
  }
}

/* =========================
   Construction Text
   ========================= */
.construction-text {
  text-align: center;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1s;
}

.construction-text h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--logo-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.construction-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.9;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 768px) {
  .construction-container {
    padding: 1.5rem;
  }
  
  .logo-wrapper {
    margin-bottom: 2rem;
  }
  
  .construction-text h1 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-logo-colored {
    width: 280px;
    height: 140px;
  }
}