:root {
    --primary-color: #0d6efd;
    --dark-bg: #1e293b;
    --glass-effect: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    transition: all 0.3s ease;
}

/* Navbar Enhancement */
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Animations */
.view-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Styling */
.poi-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    background: white;
}

.poi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.card-title {
    font-size: 1.15rem;
    color: var(--dark-bg);
}

/* Responsive Grid Compliance (Force check) */
/* Bootstrap 5 handles this with col-12 col-md-6 col-lg-3, but these classes ensure strict behavior if needed */
@media (min-width: 992px) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on PC */
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on Tablet */
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
        /* 1 column on Mobile */
        gap: 1rem;
    }
}

/* Detailed View Styling */
.detail-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.label-pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}