/*
Theme Name:  Zante Child
Template:    zante
Author:      Eagle-Themes
Theme URI:   https://eagle-themes.com/themes/zante
Author URI:  https://eagle-themes.com
Description: Zante is a WordPress Theme crafted for your hotel & resort website.
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/



/* Booking Button with WhatsApp on Frontpage */
/* Booking Button with WhatsApp on Frontpage */
.bookingwhatsapp-section {
    background-color: #343131; /* Dark background */
    color: white;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.bookingwhatsapp-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px; /* Max width for large screens */
    flex-wrap: wrap;
    gap: 20px; /* Consistent spacing between elements */
}

.bookingwhatsapp-text {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.bookingwhatsapp-title {
    font-size: 2.5rem; /* Elegant title size */
    font-weight: bold;
    margin: 0;
    color: #E3AE7E; /* Accent color for title */
}

.bookingwhatsapp-description {
    font-size: 1.2rem;
    margin-top: 8px;
    color: #F2E8C6; /* Softer contrast for description */
}

.bookingwhatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    min-width: 50px;
}

.bookingwhatsapp-link {
    font-size: 1rem;
    font-weight: bold;
    color: #343131; /* Text color */
    background-color: #ffc000; /* Button color */
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center;
}

.bookingwhatsapp-link:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    background-color: white; /* Hover color change */
}

.bookingwhatsapp-phone-number {
    font-size: 1rem;
    color: #ffffff; /* White text for phone numbers */
    margin: 0;
    font-weight: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bookingwhatsapp-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bookingwhatsapp-text {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .bookingwhatsapp-title {
        font-size: 2rem;
    }

    .bookingwhatsapp-description {
        font-size: 1rem;
    }

    .bookingwhatsapp-link {
        font-size: 0.9rem;
        width: 100%; /* Full-width buttons on mobile */
    }
}
/* Booking Button with WhatsApp on Frontpage Ends */
/* Booking Button with WhatsApp on Frontpage Ends */

/* navbar on travellers-dashboard/Booking
Here is the list of bookings successfully made.*/
.navbar-fixed-bottom, .navbar-fixed-top {
    position: relative;
    right: 0;
    left: 0;
   }

/* navbar on travellers-dashboard/Booking
Here is the list of bookings successfully ends.*/





/* Ramadan Event upfront starts */
.event-slider-wrapper {
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden; /* Hides the scrollbar */
    margin-top: 25px;
}

.event-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    white-space: nowrap;
    scrollbar-width: none; /* Hides scrollbar in Firefox */
    margin-top: 25px;
}

.event-slider::-webkit-scrollbar {
    display: none; /* Hides scrollbar in Chrome/Safari */
}

.event-slide {
    flex: 0 0 calc(33.33% - 20px);
    display: flex;
    justify-content: center;
}

.event-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    word-wrap: break-word; /* Ensures text wraps inside container */
 transition: transform 0.3s ease-in-out;
}

.event-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: normal; /* Allow wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
color: #961102;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-content {
    white-space: normal; /* Ensure content wraps properly */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-thumbnail img {
    width: 100%;
    height: 400px; /* Tall, Pinterest-style */
    object-fit: fill;
    border-radius: 10px;
    cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

/* Navigation buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.event-thumbnail img:hover {
	transform: scale(1.05); }

/* Event Popup */
.event-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
 animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.event-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Dots for pagination */
.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #961102;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: #deb666;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .event-slide {
        flex: 0 0 calc(50% - 20px); /* 2 slides per row */
    }
}

@media (max-width: 768px) {
    .event-slide {
        flex: 0 0 100%; /* 1 slide per row */
    }

    .prev-btn, .next-btn {
        font-size: 16px;
        padding: 8px;
    }

    .event-thumbnail img {
        height: 350px; /* Slightly smaller on mobile */
    }

    .event-popup img {
        max-width: 85%;
        max-height: 85%;
    }
}

@media (max-width: 480px) {
    .event-card {
        padding: 10px;
    }

    .event-card h3 {
        font-size: 16px;
    }

    .event-thumbnail img {
        height: 300px; /* Reduce height for small screens */
    }

    .prev-btn, .next-btn {
        font-size: 14px;
        padding: 6px;
    }

    .close-btn {
        font-size: 26px;
    }
}

/* Ramadan Event upfront ends */

/* preloader logo adjusment starts */
.logo-container123 {
 position: absolute; /* Stays centered even on scroll */
 margin-left:auto;
	margin-right:auto;
	 width: 100%;
}

/* Optional: Adjust size on smaller screens */
@media (max-width: 480px) {
    .logo-container123  {
        width: 80%;
		
         left: 20%;
    top: 50%;
    }
}
/* preloader logo adjusment ends */