/* Load Waterfall font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Waterfall&display=swap');

/* Desktop menu styling */
body .sp-megamenu-parent > li > a {
  font-family: 'Waterfall', cursive !important;
  font-size: 40px !important;
  color: #000000 !important;
}

/* Hover and active state (desktop) */
body .sp-megamenu-parent > li:hover > a,
body .sp-megamenu-parent > li.active > a {
  color: #000000 !important;
}

/* Mobile menu style (screens 768px and below) */
@media (max-width: 768px) {
  body .sp-megamenu-parent > li > a,
  body .offcanvas-menu ul li a,
  body .offcanvas-menu ul li:hover a,
  body .offcanvas-menu ul li.active a {
    font-family: 'Waterfall', cursive !important;
    font-size: 36px !important;
    color: #000000 !important;
  }
}


a {
  color: #bd8984 !important; /* Your custom link color */
}

a:hover,
a:focus {
  color: #bd8984 !important; /* Your custom hover color */
}

.sppb-btn {
  border: 1px dotted #000000; /* 1px dotted black border */
  border-radius: 6px;         /* Optional: rounded corners */
  padding: 10px 20px;         /* Optional: spacing inside the button */
}

