/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Buttons
- Brand Icons
- Brand Styles
- Click Animation
- Responsive Styles

*/

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 48px;
  width: 100%;
  max-width: 300px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.cbutton,
button.cbutton {
  height: 60px;
  font-size: 18px;
}

.button:hover,
.button:focus {
  background-color: #CE9288 !important;
  color: #FFFFFF !important;
}

/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
/* Brand Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Default */
.button.button-default {
  background-color: #ffffff;
}

/* Facebook */
.button.button-facebook {
  background-color: #000000;
}

/* Facebook Messenger */
.button.button-messenger {
  background-image: linear-gradient(25deg, #0099FF, #5F5DFF, #A033FF, #C740CC, #FF5280, #FF7061);
}

/* Instagram */
.button.button-instagram {
  background-color: #000000;
}

/* Contact Us */
.button.button-contactus {
  background-color: #000000;
}

/* Book */
.button.button-book {
  background-color: #000000;
}

/* Click Animation
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  50% {
    transform: scale(25, 25);
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.button.ripple::after {
  animation: ripple 0.5s ease-out; /* Increased duration to 3s */
}

/* Responsive Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* For devices smaller than 400px */
@media (max-width: 400px) {
  .button,
  button {
    width: 100%;
    max-width: none;
    font-size: 14px;
    padding: 0 10px;
  }
  
  .icon {
    width: 16px;
    height: 16px;
  }
}

/* For devices between 401px and 600px */
@media (min-width: 401px) and (max-width: 600px) {
  .button,
  button {
    width: 90%;
    max-width: none;
  }
}

/* For devices between 601px and 900px */
@media (min-width: 601px) and (max-width: 900px) {
  .button,
  button {
    width: 80%;
    max-width: 400px;
  }
}

/* For devices larger than 900px */
@media (min-width: 901px) {
  .button,
  button {
    width: 100%;
    max-width: 300px;
  }
}