:root {
    --bs-primary: #ff9d00;
    --bs-primary-rgb: 255, 157, 0;
    --bs-body-bg: #f6f7f9;
    --bs-body-color: #1d2129;
    --text-sub: #86909c;
    --surface-light: #ffffff;
    
    /* Custom Accents */
    --accent-overview: #fff7e8;
    --accent-routes: #e8f3ff;
    --accent-sights: #eafff1;
    --accent-hotels: #f5e8ff;
    --accent-shopping: #fffbe8;
    --accent-food: #ffe8e8;
}

body {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

/* Utilities */
.text-primary { color: var(--bs-primary) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.text-sub { color: var(--text-sub); }
.bg-surface { background-color: var(--surface-light); }
.font-display { font-family: 'Noto Sans SC', sans-serif; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-soft { box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05); }
.shadow-nav { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

/* Navbar (Existing system navbar will be used, but keeping these just in case for specific overrides if needed, though likely not needed if using layout) */
/*
.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e5e7eb;
    height: 64px;
}

.nav-link {
    font-weight: 500;
    color: var(--bs-body-color);
    font-size: 0.875rem;
}
.nav-link:hover, .nav-link.active {
    color: var(--bs-primary);
}
*/

.search-input {
    background-color: #f3f4f6;
    border: none;
    border-radius: 50px;
    padding-left: 2.5rem;
    font-size: 0.875rem;
    width: 250px;
}
.search-wrapper { position: relative; }
.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.125rem;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--bs-body-color);
    transition: background-color 0.2s;
}
.btn-icon:hover { background-color: #f3f4f6; }

/* Hero Header */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}
@media (min-width: 992px) {
    .hero-title { font-size: 4.5rem; }
}
.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: #9AA5B5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-action {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-body-color);
    transition: all 0.2s;
}
.btn-action:hover {
    border-color: rgba(255, 157, 0, 0.5);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Nav Pills Scroll */
.nav-pills-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem;
    scrollbar-width: none; /* Firefox */
}
.nav-pills-scroll::-webkit-scrollbar { display: none; }

.pill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--bs-body-color);
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}
.pill-item:hover { background-color: #f9fafb; color: var(--bs-primary); }

.pill-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards */
.card-hover-scale .img-wrapper img {
    transition: transform 0.7s;
}
.card-hover-scale:hover .img-wrapper img {
    transform: scale(1.05);
}
.img-wrapper { overflow: hidden; }

.badge-route {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bs-primary);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    z-index: 10;
}

.overlay-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* Grid Columns for Hotels/Sights */
.list-item-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
}
.list-item-card:last-child { margin-bottom: 0; }
.list-item-img {
    width: 8rem;
    height: 6rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tabs Style from Index.css */
.tab-btn {
    border: none !important;
    background: none !important;
    position: relative;
    padding-bottom: 12px !important;
    margin-bottom: -17px !important;
    color: var(--bs-body-color);
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--bs-primary);
}

.tab-btn.active {
    color: var(--bs-primary) !important;
    font-weight: 700 !important;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--bs-primary);
    border-radius: 2px;
}
