:root {
  --bg-dark: #07150e;
  --bg-card: rgba(13, 33, 23, 0.65);
  --bg-card-border: rgba(46, 204, 113, 0.18);
  --primary: #2ecc71;
  --primary-glow: rgba(46, 204, 113, 0.35);
  --primary-dark: #219653;
  --accent: #a3e635;
  --text-main: #f0fdf4;
  --text-muted: #86efac;
  --text-sub: #cbd5e1;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}

/* =========================================
   ANIMATED WAVY BACKGROUND TYPOGRAPHY
========================================= */
.wave-bg-container {
  position: fixed;
  inset: -20% -10%;
  width: 140%;
  height: 140%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transform: rotate(-10deg) skewX(-4deg);
  opacity: 0.18;
  overflow: hidden;
}

.wave-track {
  display: flex;
  white-space: nowrap;
  user-select: none;
  width: max-content;
}

.wave-content {
  display: flex;
  gap: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ecc71;
  -webkit-text-stroke: 1.5px rgba(163, 230, 53, 0.5);
  filter: drop-shadow(0 0 15px rgba(46, 204, 113, 0.3));
}

.wave-content span:nth-child(even) {
  opacity: 0.4;
  transform: scale(0.6);
}

/* Infinite Wave Animations */
.wave-track-1 {
  animation: scrollLeft 32s linear infinite, waveMotion 6s ease-in-out infinite alternate;
}

.wave-track-2 {
  animation: scrollRight 38s linear infinite, waveMotionReverse 7s ease-in-out infinite alternate;
}

.wave-track-3 {
  animation: scrollLeft 42s linear infinite, waveMotion 8s ease-in-out infinite alternate;
}

.wave-track-4 {
  animation: scrollRight 36s linear infinite, waveMotionReverse 6.5s ease-in-out infinite alternate;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes waveMotion {
  0% {
    margin-top: -15px;
    letter-spacing: 0.06em;
  }
  100% {
    margin-top: 25px;
    letter-spacing: 0.14em;
  }
}

@keyframes waveMotionReverse {
  0% {
    margin-top: 20px;
    transform: scaleY(0.95);
  }
  100% {
    margin-top: -20px;
    transform: scaleY(1.05);
  }
}

/* Ambient Glowing Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2ecc71 0%, transparent 70%);
  top: 10%;
  left: 15%;
  animation: pulseOrb 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  bottom: 5%;
  right: 10%;
  animation: pulseOrb 15s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #84cc16 0%, transparent 70%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

@keyframes pulseOrb {
  0% {
    transform: scale(0.9) translate(-20px, -20px);
  }
  100% {
    transform: scale(1.15) translate(30px, 30px);
  }
}

/* =========================================
   PAGE CONTAINER & LAYOUT
========================================= */
.page-container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

/* =========================================
   HEADER SECTION
========================================= */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #86efac;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ecc71;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.logo-leaf-icon {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.25), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(46, 204, 113, 0.4);
  padding: 0.6rem;
  border-radius: 18px;
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.25);
  animation: floatLeaf 4s ease-in-out infinite;
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(4deg); }
}

.brand-title {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-sub);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* =========================================
   PRIMARY PHONE CTA CARD
========================================= */
.cta-phone-card {
  background: linear-gradient(135deg, rgba(16, 46, 30, 0.85), rgba(8, 26, 17, 0.9));
  border: 1px solid rgba(46, 204, 113, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(46, 204, 113, 0.15);
  border-radius: 24px;
  padding: 1.25rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 660px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-phone-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 204, 113, 0.55);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(46, 204, 113, 0.25);
}

.cta-icon-box {
  background: linear-gradient(135deg, #2ecc71, #219653);
  color: #051d10;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(46, 204, 113, 0.4);
}

.cta-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-grow: 1;
}

.cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cta-number {
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.cta-number:hover {
  color: #86efac;
}

.cta-action-buttons {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #04180d;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3eed86, #2ecc71);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* =========================================
   INFO CARDS GRID
========================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 24px;
  padding: 1.8rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 204, 113, 0.4);
}

.card-icon-wrapper {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.25);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.9rem;
}

/* Address Card specific */
.address-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.address-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d1fae5;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.address-text strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2ecc71;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.1rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 12px;
  width: fit-content;
  transition: all 0.2s ease;
}

.card-link:hover {
  background: rgba(46, 204, 113, 0.2);
  border-color: rgba(46, 204, 113, 0.5);
  color: #a7f3d0;
  transform: translateX(3px);
}

/* Hours Card specific */
.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.card-header-flex .card-icon-wrapper {
  margin-bottom: 0;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-status-pill.open {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #86efac;
}

.live-status-pill.open .live-status-dot {
  width: 6px;
  height: 6px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 8px #2ecc71;
}

.live-status-pill.closed {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.live-status-pill.closed .live-status-dot {
  width: 6px;
  height: 6px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.day-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease;
}

.day-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.day-row.active-today {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #ffffff;
  font-weight: 700;
}

.day-row.active-today .day-name::after {
  content: " (Dzisiaj)";
  font-size: 0.75rem;
  font-weight: 500;
  color: #86efac;
  margin-left: 0.35rem;
}

.day-row.closed .day-time {
  color: #9ca3af;
}

.day-row.active-today.closed .day-time {
  color: #f87171;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   TOAST NOTIFICATION
========================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(13, 33, 23, 0.95);
  border: 1px solid #2ecc71;
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(46, 204, 113, 0.3);
  backdrop-filter: blur(12px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
  font-weight: 600;
}

.toast svg {
  color: #2ecc71;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-phone-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .cta-text-group {
    text-align: center;
  }
  
  .cta-action-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    flex: 1;
  }
}
