.image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 3 / 1; /* Maintains 2:1 ratio */
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5); /* semi-transparent white */
  color: #000;
  padding: 1.2rem 2rem;
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 2rem;
  white-space: nowrap; /* Prevent text wrapping */
}

.list-title {
  width: 100%;
  background-color: #f9f9f9;
  padding: 5px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #333;
  margin: 20px 0;
}

.note {
  width: 100%;
  background-color: #f9f9f9;
  padding: 5px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: darkmagenta;
  margin: 20px 0;
}

.pricing-list {
    overflow-x: auto;        /* Enable horizontal scroll */
    overflow-y:hidden;
}

.answer-section {
  margin-bottom: 20px;
}

.answer-section h2 {
  font-size: 20px;
  color: #6f42c1;
  margin-bottom: 5px;
}

.answer-section ul {
  list-style: square;
  padding-left: 20px;
}

.tip {
  background-color: #f9e2f4;
  border-left: 5px solid #d63384;
  padding: 10px;
  margin-top: 10px;
}

.message {
  background-color: #ffe4ec;
  border: 2px dashed #d63384;
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
  max-width: 400px;
}

.message h1 {
  color: #c2185b;
  font-size: 26px;
}

.message p {
  font-size: 18px;
  margin-top: 10px;
}

.price-note {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

.booking-box {
  max-width: 600px;
  margin: auto;
  background-color: #fce4ec;
  border-left: 6px solid #e91e63;
  padding: 5px;
  border-radius: 10px;
}


h1 {
  color: #ad1457;
  margin-bottom: 10px;
}

p, li {
  font-size: 18px;
  line-height: 1.6;
}

.highlight {
  font-weight: bold;
  color: #d81b60;
}

address {
  font-style: normal;
  margin-top: 10px;
}

.space20-div {
  margin-bottom: 20px;
}

.space40-div {
  margin-bottom: 40px;
}

.space60-div {
  margin-bottom: 60px;
}

.space80-div {
  margin-bottom: 80px;
}

/* Container for both buttons */
  .floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; /* center on larger screens */
    gap: 15px;
    z-index: 9999;
  }

  /* Style for each button */
  .floating-buttons a {
    background-color: #800020; /* Burgundy */
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }

  .floating-buttons a:hover {
    background-color: #a8324a;
    transform: translateY(-2px);
  }

.middle-dot {
  display: inline;
}

.one-line {
  display:run-in;
}

.two-line {
  display:none;
}

.invisible {
  visibility: hidden;
}
/* Mobile responsive: buttons span across bottom */
@media (max-width: 600px) {
    .title-box {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
    }

    .floating-buttons {
      justify-content: space-around;
    }
    .floating-buttons a {
      flex: 1;
      text-align: center;
      padding: 15px 0;
      border-radius: 0;
    }

  .middle-dot {
    display: none; /* hide dot on mobile */
  }
  .one-line {
    display:none;
  }
  .two-line {
    display:block;
  }

  .col-lg-6 {
    margin-bottom: 15px;  /* space between the stacked divs */
  }
    
}


