/* General Elements */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
}
h1, h2 {
  margin: 0 0 0.5em;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  background: #333 url('hero-bg.jpg') center/cover no-repeat; /* Placeholder background image */
}
.hero h1 {
  font-size: 2em;
  font-weight: normal;
}
.hero .tagline {
  font-size: 1.2em;
  margin: 10px 0 20px;
}
.cta-button {
  display: inline-block;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
}
.cta-button:hover {
  background: #1DA851;
}

/* Service Menus */
.service-menu.mobile-menu, .service-menu.desktop-menu {
  text-align: center;
  margin: 20px 0;
}
.service-menu.mobile-menu a {
  display: inline-block;
  width: 45%;
  margin: 2% 2%;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
}
.service-menu.mobile-menu img {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 5px;
}
.service-menu.mobile-menu span {
  display: block;
  font-size: 0.95em;
  color: #333;
}
.service-menu.desktop-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-menu.desktop-menu li {
  display: inline-block;
  margin: 0 15px;
}
.service-menu.desktop-menu a {
  font-weight: bold;
  color: #333;
}
.service-menu.desktop-menu a:hover {
  text-decoration: underline;
}

/* Advertisement container */
.adsbygoogle {
  display: block;
  margin: 20px auto;
}

/* Modals (Service Details, Booking, Cookie Preferences) */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.show {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  text-align: left;
}
.modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}
.modal-close:focus {
  outline: none;
}
.price-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.price-list li {
  margin: 5px 0;
}
.modal-actions {
  text-align: center;
  margin-top: 15px;
}
.modal-actions .book-online,
.modal-actions .book-wa {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
}
.modal-actions .book-wa {
  background: #25D366; /* WhatsApp color for WA button */
}
.modal-actions .book-online:hover {
  background: #0056b3;
}
.modal-actions .book-wa:hover {
  background: #1DA851;
}
/* Smaller modal for cookie preferences */
.cookie-modal {
  max-width: 400px;
}
.modal-buttons {
  text-align: center;
  margin-top: 15px;
}
.modal-buttons button {
  padding: 8px 20px;
}
.mobile-menu {
  display: none;
  transition: all 0.3s;
}
.mobile-menu.open {
  display: block;
}
.menu-toggle {
  display: inline-block;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  margin: 10px auto;
}
@media (min-width: 768px) {
  .menu-toggle { display: none; }
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f4f4f4;
  color: #000;
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
  z-index: 1000;
}
.cookie-banner p {
  display: inline-block;
  margin: 0 10px 5px;
}
.cookie-banner button {
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  background: #ddd;
}
.cookie-banner button:hover {
  background: #ccc;
}

/* Confirmation Banner */
.confirm-banner {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #4BB543; /* green success color */
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  z-index: 1000;
}

/* Footer */
footer {
  background: #f0f0f0;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9em;
}
footer p {
  margin: 5px 0;
}
footer a {
  color: #0066cc;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive Layout: show/hide menus appropriately */
@media (max-width: 767px) {
  .desktop-menu { display: none; }
  .mobile-menu { display: block; }
}
@media (min-width: 768px) {
  .mobile-menu { display: none; }
  .desktop-menu { display: block; }
}
