@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;700&display=swap');

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

body {
  font-family: 'Baloo 2', cursive;
  background: linear-gradient(145deg, #e3f2fd, #fce4ec);
  background-attachment: fixed;
  background-size: 300% 300%;
  animation: backgroundShift 20s ease infinite;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

header {
  background: #ffffffdd;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  height: 140px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #1565c0;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

nav ul li a:hover {
  background: #bbdefb;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  background: #90caf9;
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero h1 {
  font-size: 2.5rem;
}

.offer-section {
  text-align: center;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.offer-box {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.offer-box:hover {
  transform: translateY(-5px);
}
.offer-box img {
  width: 100%;
  border-radius: 12px;
}
.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #1565c0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
.cta-button:hover {
  background: #0d47a1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review {
  background: #ffffffee;
  border-left: 5px solid #1565c0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.review-text {
  font-size: 1rem;
  margin-bottom: 10px;
}
.review-author {
  font-weight: bold;
  color: #1565c0;
}

.contact-info p {
  margin-bottom: 8px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #eeeeee;
  font-size: 0.9rem;
  color: #555;
  margin-top: 40px;
}

.bubble-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1976d2;
  color: white;
  padding: 15px;
  border-radius: 12px 12px 0 12px;
  font-size: 0.95rem;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.bubble-contact a {
  color: #fff9c4;
  font-weight: bold;
  text-decoration: none;
}
.bubble-contact a:hover {
  text-decoration: underline;
}

.protips-container h3 {
  color: #4a148c;
  margin-top: 1.5rem;
}
.protips-container p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.instagram-link {
  color: #1976d2;
  text-decoration: none;
}
.instagram-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo {
    height: 50px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
