/* Category Container */
.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

/* Category Card */
.category-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 320px;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
}

/* Image inside Category Card */
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ecf0f1;
}

/* Content inside Category Card */
.category-card-content {
    padding: 15px;
}

.category-card-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.category-badge {
    background-color: #16a085;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    margin-bottom: 10px;
    display: inline-block;
}

.category-card-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.view-tours-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.view-tours-btn:hover {
    background-color: #2980b9;
}
/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .category-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 480px) {
    .category-container {
        grid-template-columns: 1fr;
    }
    
    .category {
        font-size: 2rem;
    }

    .category-card-content h3 {
        font-size: 1.5rem;
    }

    .view-tours-btn {
        font-size: 1.1rem;
    }
}
