@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00AA6B; /* TripAdvisor-inspired green: growth, trust, nature */
    --secondary: #34E0A1;
    --accent: #FFB700; /* Energy, warmth, sun */
    --dark: #002B26;
    --light: #F8FAF9;
    --white: #FFFFFF;
    --gray: #6B7280;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Navigation */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 43, 38, 0.4) 0%, rgba(0, 43, 38, 0.2) 50%, rgba(0, 43, 38, 0.7) 100%);
}

/* Search Bar Shadow */
.search-shadow {
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cards */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Category Pill */
.category-pill {
    transition: all 0.3s ease;
}

.category-pill:hover {
    transform: scale(1.05);
    background-color: var(--primary);
    color: white;
}

/* Custom Gradients */
.bg-gradient-peru {
    background: linear-gradient(135deg, #00AA6B 0%, #34E0A1 100%);
}
