/* Custom styles for QueenK Travel Theme */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #031B34;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f59e0b, #f97316);
    border-radius: 4px;
}

/* Gallery animation */
.gallery-image {
    transition: all 0.5s ease;
}
.gallery-image:hover {
    transform: scale(1.05);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .mobile-menu-open {
        display: block !important;
    }
}

/* Trip card hover effects */
.trip-card {
    transition: all 0.3s ease;
}
.trip-card:hover {
    transform: translateY(-8px);
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(to right, #f59e0b, #f97316);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(to right, #d97706, #ea580c);
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth toggle animation */
.hidden-include,
.hidden-exclusive {
    transition: all 0.3s ease;
}

.hidden-include.showing,
.hidden-exclusive.showing {
    display: flex !important;
    animation: fadeInItem 0.3s ease forwards;
}

@keyframes fadeInItem {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-includes,
.toggle-exclusives {
    cursor: pointer;
    user-select: none;
    padding: 2px 8px;
    border-radius: 12px;
    background: #fef3c7;
    transition: all 0.2s ease;
}

.toggle-includes:hover,
.toggle-exclusives:hover {
    background: #f59e0b;
    color: white;
}