  @import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Kumbh+Sans:wght@100..900&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap" rel="stylesheet');
        @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
        /* Basic Reset and Body Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: #f9fafb; /* Equivalent to bg-gray-50 */
            color: #1f2937; /* Equivalent to text-gray-800 */
        }

        /* Container */
        .container {
                max-width: 1000px;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1rem;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem; /* mb-8 */
        }

        .header-title {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 700;
        }

        /* Filter Navigation */
        .filter-nav {
            margin-bottom: 2.5rem; /* mb-10 */
        }

        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem; /* gap-4 */
            list-style: none;
        }

        .filter-btn {
            padding: 0.5rem 1rem; /* px-4 py-2 */
            font-size: 1rem; /* text-base */
            font-weight: 600; /* font-semibold */
            border-radius: 9999px; /* rounded-full */
            border: none;
            cursor: pointer;
            background-color: transparent;
            color: #4b5563; /* text-gray-600 */
            transition: background-color 0.3s, color 0.3s;
        }

        .filter-btn:hover {
            background-color: #e5e7eb; /* hover:bg-gray-200 */
        }

        .filter-btn.tab-active {
            background-color: #1d4ed8; /* blue-700 */
            color: white;
        }
        
        /* Destinations Grid */
        .destinations-grid {
            display: grid;
            gap: 2rem; /* gap-8 */
            /* Responsive grid columns */
            grid-template-columns: repeat(1, 1fr);
        }

        /* Tablet */
        @media (min-width: 640px) {
            .destinations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .filter-btn {
                font-size: 0.875rem; /* sm:text-base */
            }
        }
        /* Small Desktop */
        @media (min-width: 768px) {
            .destinations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        /* Large Desktop */
        @media (min-width: 1024px) {
            .destinations-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Destination Card */
        .destination-card {
            display: block;
            background-color: white;
            border-radius: 2rem; /* rounded-2xl */
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
        }

        .destination-card:hover {
             box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
        }

        .card-image {
            width: 100%;
            height: 12rem; /* h-56 */
            object-fit: cover;
        }

        .card-content {
            padding: 1.25rem; /* p-5 */
        }

        .card-title {
            font-size: 1.25rem; /* text-xl */
            font-weight: 700; /* font-bold */
            color: #111827; /* text-gray-900 */
        }

        .card-subtitle {
            color: #6b7280; /* text-gray-500 */
        }