/*
Theme Name: Travel Guide Nepal
Theme URI: https://avistashakya.com.np/travel-guide-nepal
Author: Avista Shakya
Description: A minimal, fast, and mobile-friendly travel guide for Nepal using Bootstrap 5.
Version: 1.0
Tags: travel, nepal, bootstrap, minimal, blog
Text Domain: travel-guide-nepal
*/

/* Custom CSS to polish the Bootstrap look */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    background-color: #fcfcfc;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.card {
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #dc3545; /* A hint of Nepal's flag crimson */
    border: none;
}

.btn-primary:hover {
    background-color: #b02a37;
}

/* Travel Guide Nepal Accents */
.badge.bg-danger {
    background-color: #dc3545 !important; /* Nepal Flag Red */
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title a:hover {
    color: #003893 !important; /* Nepal Flag Blue */
}

.pagination .page-numbers {
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    margin: 0 4px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}

.pagination .current {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.destination-tile {
    background: linear-gradient(45deg, #0b0b0b, #252525);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 220px;
}

.destination-tile:hover {
    background: linear-gradient(45deg, #dc3545, #003893); /* Nepal Flag Colors on Hover */
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.destination-tile h5 {
    letter-spacing: 2px;
}

/* Blog Card Hover Effect */
.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.post-card .card-title a:hover {
    color: #dc3545 !important;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #444 !important;
    }
}
.ls-1 {
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}