body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff8fa;
  color: #232323;
}

body, html {
  font-family: 'Montserrat', Arial, sans-serif;
}

header {
  background: #cc005f;
  color: white;
  text-align: center;
  padding: 8px 0;
}
#logo {
  width: 70px;
  margin-bottom: 8px;
}
#top-banner {
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
}
#banner-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.7em;
}
nav ul li {
  display: inline-block;
  margin: 0 10px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.3em 0.6em;
  border-radius: 6px;
  transition: background 0.2s;
}
nav ul li a:hover {
  background: #e91e63;
}
main {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #feffff;
  box-shadow: 0 2px 10px rgba(204,0,95,0.09);
  border-radius: 8px;
}
h1, h2 {
  color: #cc005f;
}
button {
  background: #00e676;
  color: white;
  border: none;
  padding: 0.8em 1.8em;
  border-radius: 8px;
  margin: 10px 8px 0 0;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #009654;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.gallery-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(204,0,95,0.11);
}
footer {
  background: #262626;
  color: white;
  text-align: center;
  padding: 11px 0;
  margin-top: 35px;
}
@media (max-width: 700px) {
  main, header, footer {
    padding: 6px;
  }
  nav ul li {
    display: block;
    margin: 9px 0;
  }
  #logo {
    width: 50px;
  }
  #banner-img {
    max-height: 110px;
  }
  .gallery-img {
    height: 100px;
  }
}


/* Container for buttons */
#contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

/* Common button styles */
button.call-btn, button.whatsapp-btn {
  display: flex;
  align-items: center;
  background-color: #25d366; /* WhatsApp green for WhatsApp, override below for call */
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Call button specific color */
button.call-btn {
  background-color: #007bff; /* Bootstrap blue */
}

/* Button hover effects */
button.call-btn:hover {
  background-color: #0056b3;
}
button.whatsapp-btn:hover {
  background-color: #1ebe57;
}

/* Icon inside button */
button.call-btn svg, button.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: white;
}

/* Responsive: stack buttons vertically on small screens */
@media (max-width: 480px) {
  #contact-buttons {
    flex-direction: column;
    gap: 12px;
  }
  button.call-btn, button.whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}
