/* Joy Travel International - Custom Styles */

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

/* Line clamp utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gold gradient text */
.text-gradient {
    background: linear-gradient(135deg, #C9A84C, #E8CC7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tour card hover lift */
.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0F0E0A; }
::-webkit-scrollbar-thumb { background: #C9A84C40; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C9A84C80; }

/* Itinerary accordion transition */
[x-cloak] { display: none !important; }

/* Form input focus ring */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}
