<div id="booking-popup">
<div class="popup-box">
<h2>⚠️ Booking Temporarily Unavailable</h2>
<p>
Our booking system is currently down for maintenance.<br><br>
For reservations or any questions, please contact us at:
</p>
<a href="mailto:info@curlysbeachresort.com" class="email-btn">
📧 info@curlysbeachresort.com
</a>
<p class="small-text">
We apologize for the inconvenience and appreciate your understanding.
</p>
</div>
</div>
<style>
#booking-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.75);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.popup-box {
background: #ffffff;
padding: 40px 30px;
border-radius: 15px;
max-width: 420px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
animation: fadeIn 0.4s ease-in-out;
}
.popup-box h2 {
color: #ff4d4d;
margin-bottom: 15px;
}
.popup-box p {
color: #333;
font-size: 16px;
margin-bottom: 20px;
}
.email-btn {
display: inline-block;
padding: 12px 20px;
background: linear-gradient(45deg, #007bff, #00c6ff);
color: #fff;
text-decoration: none;
border-radius: 30px;
font-weight: bold;
transition: 0.3s;
}
.email-btn:hover {
transform: scale(1.05);
}
.small-text {
font-size: 13px;
color: #777;
margin-top: 15px;
}
@keyframes fadeIn {
from {opacity: 0; transform: translateY(-20px);}
to {opacity: 1; transform: translateY(0);}
}
</style>