/* Custom CSS Styles for Schweizer Schlüsseldienst */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --color-brand-green: #16a34a;
  --color-brand-green-dark: #15803d;
  --color-brand-green-light: #dcfce7;
  --color-accent-lime: #84cc16;
  --color-swiss-red: #dc2626;
  --color-dark: #0f172a;
}

body {
  font-family: var(--font-sans);
  background-color: #f0f7f2;
  color: #1e293b;
  overflow-x: hidden;
}

/* App Outer Shell styling matching uploaded orientation design */
.app-shell {
  background-color: #e6f3ea;
  min-height: 100vh;
  padding-bottom: 2rem;
}

.hero-card-container {
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(22, 163, 74, 0.1);
  background: #ffffff;
  overflow: hidden;
}

/* Custom Glassmorphism Badge */
.glass-badge {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Green gradient hero overlay */
.hero-gradient-overlay {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.95) 0%, rgba(21, 128, 61, 0.9) 100%);
}

/* Smooth Accordion Transitions */
details {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

details summary {
  list-style: none;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary .chevron-icon {
  transform: rotate(180deg);
}

/* Pulse animation for 24/7 indicator */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.pulse-badge {
  animation: pulse-ring 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #e6f3ea;
}
::-webkit-scrollbar-thumb {
  background: #a7f3d0;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

/* Modal backdrop styling */
dialog::backdrop {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}
