/* Custom CSS for LIMOKAR Theme */

/* Hover shadow effects for gold color */
.hover\:shadow-gold\/30:hover {
    box-shadow: 0 10px 40px rgba(195, 151, 45, 0.3);
}

.hover\:shadow-gold\/40:hover {
    box-shadow: 0 15px 50px rgba(195, 151, 45, 0.4);
}

.hover\:shadow-gold\/50:hover {
    box-shadow: 0 20px 60px rgba(195, 151, 45, 0.5);
}

/* Style plugin Taxi Booking System */
.taxi-booking-form {
    background: transparent !important;
    color: white !important;
}

.taxi-booking-form input,
.taxi-booking-form select,
.taxi-booking-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem !important;
}

.taxi-booking-form input::placeholder,
.taxi-booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.taxi-booking-form label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.taxi-booking-form button[type="submit"] {
    background-color: #C3972D !important;
    color: #000000 !important;
    border-radius: 9999px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    border: none !important;
}

.taxi-booking-form button[type="submit"]:hover {
    box-shadow: 0 15px 50px rgba(195, 151, 45, 0.4) !important;
    transform: translateY(-2px);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* WordPress menu styling */
header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

header nav ul li a:hover {
    color: white;
    opacity: 0.6;
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
    header nav {
        display: none;
    }
}

