/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Logo */
.logo {
    max-width: 200px;
}


/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 20px 0;
}



/* Hero Section Enhancements */
.hero-overlay {
    position: relative;
    overflow: hidden;
}

    .hero-overlay img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better readability */
}

/* Booking QR Code Frame */
.qr-frame {
    background: #ffffff;
    border: 6px solid #007bff;
    display: inline-block;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Booking Button Enhancement */
.btn-booking {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

    .btn-booking:hover {
        background-color: #0056b3;
        transform: scale(1.05);
    }

/* About Section Enhancements */
.card {
    background: #fff;
    transition: box-shadow 0.3s ease-in-out;
}

    .card:hover {
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    }
