/* Booking Widget */
.booking-widget {
 text-align: center;
 margin-top: 20px;
 background: #f8f8f8;
 border-radius: 12px;
 padding: 20px 20px 30px 20px; /* top, right, bottom, left */
 box-shadow: 0 2px 8px rgba(0,0,0,0.1);
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}
	
.booking-widget h2 {
 font-weight: bold;
 display: inline-block; /* makes the line only as wide as the text */
 border-bottom: 4px solid #ffc52e; /* thicker yellow line */
 padding-bottom: 1rem; /* space between text and line */
 margin-bottom: 2rem;
}

/*.booking-widget:hover {
 transform: translateY(-4px);
 box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}*/

 @media (max-width: 600px) {
 .booking widget {
 padding: 5px;
 }
}