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

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #111;
  color: #f5f5f5;
}

/* Header + Logo */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #222;
}
header img.logo {
  height: 50px;
}

/* Hero */
.hero {
  height: 80vh;
  background: url('hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Gallery */
.gallery {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  font-size: 0.9rem;
  color: #aaa;
}

#wintacare-bubble {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at top left,#ffd54f,#b8860b);
  box-shadow: 0 0 20px rgba(255,215,0,0.45);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:10021;
  animation: pulse 2.5s infinite ease-in-out;
}
#wintacare-bubble img { width:44px;height:44px;display:block;border-radius:6px; }
@keyframes pulse {
  0%,100% { box-shadow:0 0 12px rgba(255,215,0,0.3);}
  50% { box-shadow:0 0 25px rgba(255,215,0,0.75);}
}