/* Custom Tailwind Configuration */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Color Palette */
:root {
    --orange-primary: #FF6B35;
    --teal-primary: #2EC4B6;
    --green-primary: #10B981;
    --pink-primary: #EC4899;
    --purple-primary: #A855F7;
    --bg-black: #000000;
    --bg-gray-900: #0a0a0a;
    --bg-gray-800: #1a1a1a;
}

/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: #FFFFFF;
}

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

/* Custom Button Styles */
.btn-primary {
    @apply bg-gradient-to-r from-orange-500 to-pink-500 hover:from-orange-600 hover:to-pink-600 text-white px-6 py-3 rounded-lg font-bold transition-all shadow-lg shadow-orange-500/50;
}

.btn-secondary {
    @apply bg-gradient-to-r from-teal-500 to-cyan-500 hover:from-teal-600 hover:to-cyan-600 text-white px-6 py-3 rounded-lg font-bold transition-all shadow-lg shadow-teal-500/50;
}

/* Custom Card Styles */
.card {
    @apply bg-gradient-to-br from-gray-900 to-black rounded-xl p-6 border border-transparent bg-clip-padding;
    background-image: linear-gradient(#1a1a1a, #000000), linear-gradient(135deg, #FF6B35, #2EC4B6, #EC4899);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.card:hover {
    background-image: linear-gradient(#1a1a1a, #000000), linear-gradient(135deg, #FF8C5A, #4FD1C7, #F472B6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #2EC4B6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange-teal {
    background: linear-gradient(135deg, #FF6B35 0%, #2EC4B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-rainbow {
    background: linear-gradient(135deg, #FF6B35 0%, #2EC4B6 25%, #EC4899 50%, #A855F7 75%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Backgrounds */
.gradient-bg-orange-teal {
    background: linear-gradient(135deg, #FF6B35 0%, #2EC4B6 100%);
}

.gradient-bg-rainbow {
    background: linear-gradient(135deg, #FF6B35 0%, #2EC4B6 25%, #EC4899 50%, #A855F7 75%, #10B981 100%);
}

.gradient-bg-purple-pink {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
}

.gradient-border {
    border: 2px solid transparent;
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(135deg, #FF6B35, #2EC4B6, #EC4899) border-box;
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #FF6B35;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    ring: 2px;
    ring-color: #FF6B35;
}

/* Mobile Menu Animation */
.mobile-menu-enter {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.mobile-menu-enter-active {
    max-height: 500px;
    opacity: 1;
}

/* WhatsApp Button Pulse */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-button:hover {
    animation: pulse 2s infinite;
}

/* Trip Card Hover Effect */
.trip-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF8C5A;
}

/* Text Selection */
::selection {
    background-color: #FF6B35;
    color: white;
}

/* Header Navigation Styles */
.nav-link {
    position: relative;
    padding-bottom: 4px;
    font-weight: 500;
}

.nav-link.active {
    color: #FF6B35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #EC4899);
}

/* Header Logo Animation */
header a[href*="home"] .w-11 {
    transition: all 0.3s ease;
}

header a[href*="home"]:hover .w-11 {
    transform: rotate(5deg) scale(1.05);
}

/* Responsive Typography */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}

